Files
2026-07-27 14:07:26 +08:00

11 lines
192 B
TypeScript

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