Skip to content

Commit 8d8f4b2

Browse files
authored
remove default parameter values from uFuzzy.d.ts
2 parents 553f8fa + 732981b commit 8d8f4b2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

dist/uFuzzy.d.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@ declare class uFuzzy {
55
search(
66
haystack: string[],
77
needle: string,
8-
outOfOrder = false,
9-
infoThresh = 1e3,
8+
/** false by default */
9+
outOfOrder?: boolean,
10+
/** 1e3 by default */
11+
infoThresh?: number,
1012
preFiltered?: uFuzzy.HaystackIdxs | null
1113
): uFuzzy.SearchResult;
1214

0 commit comments

Comments
 (0)