@alyle/ui
Version:
Minimal Design, a set of components for Angular
17 lines (16 loc) • 504 B
TypeScript
import { Injector } from '@angular/core';
export declare class LyOverlayConfig {
/** Styles for overlay container */
styles?: Object;
classes?: string[];
hasBackdrop?: boolean;
backdropClass?: string;
fnDestroy?: (...arg: any) => void;
/** Function that will be called on scroll or resize event */
onResizeScroll?: (() => void);
/**
* Whether the user can click on the backdrop to close the overlay.
*/
disableClose?: boolean;
injector?: Injector;
}