UNPKG

preline

Version:

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

19 lines (16 loc) 492 B
export interface IOverlayOptions { hiddenClass?: string | null; emulateScrollbarSpace?: boolean; isClosePrev?: boolean; backdropClasses?: string | null; backdropParent?: string | HTMLElement | Document; backdropExtraClasses?: string | null; moveOverlayToBody?: number | null; isToggleClassesImmediately?: boolean; } export interface IOverlay { options?: IOverlayOptions; open(cb: Function | null): void; close(forceClose: boolean, cb: Function | null): void; destroy(): void; }