UNPKG

ag-grid-community

Version:

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

12 lines (11 loc) 290 B
export interface AutocompleteListParams { enabled: boolean; /** list will only get recreated if the type changes */ type?: string; searchString?: string; entries?: AutocompleteEntry[]; } export interface AutocompleteEntry { key: string; displayValue?: string; }