UNPKG

ag-grid-community

Version:

Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue

16 lines (15 loc) 429 B
/** * * @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; addSequentialWeight?: boolean; }): { values: string[]; indices: number[]; };