Skip to content

Commit

Permalink
remove default parameter values from uFuzzy.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
leeoniya authored Jun 27, 2023
2 parents 553f8fa + 732981b commit 8d8f4b2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dist/uFuzzy.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ declare class uFuzzy {
search(
haystack: string[],
needle: string,
outOfOrder = false,
infoThresh = 1e3,
/** false by default */
outOfOrder?: boolean,
/** 1e3 by default */
infoThresh?: number,
preFiltered?: uFuzzy.HaystackIdxs | null
): uFuzzy.SearchResult;

Expand Down

0 comments on commit 8d8f4b2

Please sign in to comment.