UNPKG

downshift

Version:

🏎 A set of primitives to build simple, flexible, WAI-ARIA compliant React autocomplete, combobox or select dropdown components.

8 lines (7 loc) 234 B
export interface GetItemIndexByCharacterKeyOptions<Item> { keysSoFar: string; highlightedIndex: number; items: Item[]; itemToString(item: Item | null): string; isItemDisabled(item: Item, index: number): boolean; }