1 | import { ElementRef, OnDestroy } from '@angular/core';
|
2 | import { BsDropdownState } from './bs-dropdown.state';
|
3 | export declare class BsDropdownToggleDirective implements OnDestroy {
|
4 | private _state;
|
5 | private _element;
|
6 | isDisabled: boolean;
|
7 | isOpen: boolean;
|
8 | onClick(): void;
|
9 | onDocumentClick(event: any): void;
|
10 | onEsc(): void;
|
11 | private _subscriptions;
|
12 | constructor(_state: BsDropdownState, _element: ElementRef);
|
13 | ngOnDestroy(): void;
|
14 | }
|