Interface Layer

interface Layer {
    destroy: (() => void);
    getEl: (() => HTMLElement);
    hide: (() => void);
    show: (() => void);
    getAllowMaskClose(): boolean;
    setAllowMaskClose(allow: boolean): void;
    setOnAfterHide(func: (() => void)): void;
}

Properties

destroy: (() => void)
getEl: (() => HTMLElement)
hide: (() => void)
show: (() => void)

Methods