We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 553f8fa + 732981b commit 8d8f4b2Copy full SHA for 8d8f4b2
dist/uFuzzy.d.ts
@@ -5,8 +5,10 @@ declare class uFuzzy {
5
search(
6
haystack: string[],
7
needle: string,
8
- outOfOrder = false,
9
- infoThresh = 1e3,
+ /** false by default */
+ outOfOrder?: boolean,
10
+ /** 1e3 by default */
11
+ infoThresh?: number,
12
preFiltered?: uFuzzy.HaystackIdxs | null
13
): uFuzzy.SearchResult;
14
0 commit comments