ohctechv3/.svn/pristine/7a/7ad702a3ba7005adb46dd497950f77e3ea689876.svn-base
2024-10-28 15:03:36 +05:30

13 lines
511 B
Plaintext

export declare function fuzzyCheckStrings(inputValues: string[], validValues: string[], allSuggestions: string[]): {
[p: string]: string[];
};
/**
*
* @param {String} inputValue The value to be compared against a list of strings
* @param allSuggestions The list of strings to be compared against
*/
export declare function fuzzySuggestions(inputValue: string, allSuggestions: string[], hideIrrelevant?: boolean, filterByPercentageOfBestMatch?: number): {
values: string[];
indices: number[];
};