ngx-bootrap-multiselect
Version:
Customizable multiselect dropdown in Angular 2 with bootstrap css.
16 lines (15 loc) • 456 B
TypeScript
import { ElementRef, OnChanges, OnInit, SimpleChanges } from '@angular/core';
export declare class AutofocusDirective implements OnInit, OnChanges {
private elemRef;
/**
* Will set focus if set to falsy value or not set at all
*/
ssAutofocus: boolean;
get element(): {
focus?: Function;
};
constructor(elemRef: ElementRef);
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
focus(): void;
}