Choices/src/scripts/interfaces/event-type.ts

12 lines
197 B
TypeScript

export type EventType =
| 'addItem'
| 'removeItem'
| 'highlightItem'
| 'unhighlightItem'
| 'choice'
| 'change'
| 'search'
| 'showDropdown'
| 'hideDropdown'
| 'highlightChoice';