UNPKG

preline

Version:

Preline UI is an open-source set of prebuilt UI components based on the utility-first Tailwind CSS framework.

13 lines (10 loc) 226 B
export interface IDropdown { options?: {}; open(): void; close(isAnimated: boolean): void; forceClearState(): void; destroy(): void; } export interface IHTMLElementFloatingUI extends HTMLElement { _floatingUI: any; }