preline
Version:
Preline UI is an open-source set of prebuilt UI components based on the utility-first Tailwind CSS framework.
17 lines (13 loc) • 326 B
text/typescript
export interface IOverlayOptions {
hiddenClass?: string | null;
emulateScrollbarSpace?: boolean;
isClosePrev?: boolean;
backdropClasses?: string | null;
backdropExtraClasses?: string | null;
moveOverlayToBody?: number | null;
}
export interface IOverlay {
options?: IOverlayOptions;
open(): void;
close(): void;
}