ngx-bootstrap
Version:
Native Angular Bootstrap Components
18 lines (17 loc) • 625 B
TypeScript
/** Default values provider for typeahead */
export declare class TypeaheadConfig {
/** sets use adaptive position */
adaptivePosition: boolean;
/** turn on/off animation */
isAnimated: boolean;
/** used to hide results on blur */
hideResultsOnBlur: boolean;
/** used to choose the first item in typeahead container */
selectFirstItem: boolean;
/** used to active/inactive the first item in typeahead container */
isFirstItemActive: boolean;
/** used to choose set minimal no of characters that needs to
* be entered before typeahead kicks-in
*/
minLength: number;
}