UNPKG

@lekseek/ui

Version:

Vue 3 components library

17 lines (16 loc) 350 B
export interface AutocompleteItem { key?: string | number; text?: string; disabled?: boolean; header?: string; divider?: boolean; metadata?: any; } export interface AutocompleteSelectedItem { key: string | number; text: string; disabled?: boolean; header?: string; divider?: boolean; metadata?: any; }