UNPKG

@hipsterbrown/downshift

Version:

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

8 lines (7 loc) 244 B
export interface GetItemIndexByCharacterKeyOptions<Item> { keysSoFar: string; highlightedIndex: number; items: Item[]; itemToString(item: Item | null): string; getItemNodeFromIndex(index: number): HTMLElement | undefined; }