@hxui/angular
Version:
This README includes the steps that are necessary to import the HxUi-angular into a project or to contribute with development.
11 lines (10 loc) • 348 B
TypeScript
import { OnDestroy } from '@angular/core';
import { DropdownState } from './dropdown.state';
export declare class DropdownContainerComponent implements OnDestroy {
private _state;
isOpen: boolean;
readonly direction: 'down' | 'up';
private _subscription;
constructor(_state: DropdownState);
ngOnDestroy(): void;
}