flowbite-ts-test
Version:
The most popular library of interactive components built with Tailwind CSS
17 lines • 502 B
TypeScript
import { DrawerOptions, PlacementClasses } from './types';
export declare interface DrawerInterface {
_targetEl: HTMLElement;
_triggerEl: HTMLElement;
_options: DrawerOptions;
_visible: boolean;
_init(): void;
isVisible(): boolean;
isHidden(): boolean;
hide(): void;
show(): void;
toggle(): void;
_createBackdrop(): void;
_destroyBackdropEl(): void;
_getPlacementClasses(placement: string): PlacementClasses;
}
//# sourceMappingURL=interface.d.ts.map