ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
15 lines (14 loc) • 394 B
TypeScript
/**
*
* @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(params: {
inputValue: string;
allSuggestions: string[];
hideIrrelevant?: boolean;
filterByPercentageOfBestMatch?: number;
}): {
values: string[];
indices: number[];
};