UNPKG

@ng2select/combo

Version:

<!-- Title: ng2select Description: Angular 2 bootstrap select directive module Author: ng2select -->

19 lines (18 loc) 763 B
import { OnInit, AfterContentInit } from '@angular/core'; import { IxOptionComponent } from '../../core'; import { ComboSelect } from '../combo-select'; export declare class ComboSelectComponent extends ComboSelect implements OnInit, AfterContentInit { constructor(); ngOnInit(): void; ngAfterContentInit(): void; onBlur($event: any): void; onChange(option: IxOptionComponent): void; onComboInputChange($event: any): void; onFocus($event: any): void; onKeydown($event: any): void; onInputKeydown($event: any): void; setNgModelSingleselect(option: IxOptionComponent): void; setTitle(option: IxOptionComponent): void; syncNgModelSingleselect(newVal: any): void; writeValue(newVal: any): void; }