UNPKG

ngx-type-ahead

Version:

Typeahead multi-select dropdown component for angular

17 lines (16 loc) 587 B
import { Observable } from 'rxjs'; export declare type TypeaheadSuggestions = string[] | Object[] | Observable<string[]> | Observable<Object[]>; export interface TypeaheadSettings { /** delay of input type debounce */ typeDelay: number; /** maximal number of visible items */ suggestionsLimit: number; /** text shown when there are no matches */ noMatchesText: string; tagClass: string; tagRemoveIconClass: string; dropdownMenuClass: string; dropdownMenuExpandedClass: string; dropdownMenuItemClass: string; dropdownToggleClass: string; }