uni-ticket-system/node_modules/licia/fuzzySearch.d.ts
2023-12-05 10:11:10 +08:00

11 lines
192 B
TypeScript

declare function fuzzySearch(
needle: string,
haystack: any[],
options?: {
caseSensitive?: boolean;
key?: string | string[];
}
): any[];
export = fuzzySearch;