Skip to content

Commit 88262b9

Browse files
committed
Fixed Typings
1 parent ffe4010 commit 88262b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dist/@litecode-ide/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ declare module "@litecode-ide/virtual-file-system" {
6262
content: string;
6363
}
6464

65-
interface SearchResults {
65+
interface SearchResultsType {
6666
files: MatchingFile[];
6767
numOfResults: number;
6868
numOfLines: number;
@@ -71,7 +71,7 @@ declare module "@litecode-ide/virtual-file-system" {
7171
interface SearchInputProps {
7272
className?: string;
7373
style?: React.CSSProperties;
74-
onSearchFiles?: (searchTerm: string, searchResults: SearchResults) => void;
74+
onSearchFiles?: (searchTerm: string, searchResults: SearchResultsType) => void;
7575
}
7676

7777
interface SearchContainerProps {

0 commit comments

Comments
 (0)