UNPKG

preline

Version:

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

18 lines (15 loc) 394 B
export interface IOverlayOptions { hiddenClass?: string | null; emulateScrollbarSpace?: boolean; isClosePrev?: boolean; backdropClasses?: string | null; backdropParent?: string | HTMLElement | Document; backdropExtraClasses?: string | null; moveOverlayToBody?: number | null; } export interface IOverlay { options?: IOverlayOptions; open(): void; close(): void; destroy(): void; }