UNPKG

347 BTypeScriptView Raw
1import { OnDestroy } from '@angular/core';
2import { BsDropdownState } from './bs-dropdown.state';
3export declare class BsDropdownContainerComponent implements OnDestroy {
4 private _state;
5 isOpen: boolean;
6 readonly direction: 'down' | 'up';
7 private _subscription;
8 constructor(_state: BsDropdownState);
9 ngOnDestroy(): void;
10}