Xivgear Types Documentation
    Preparing search index...

    Model for a modal dialog. Does not need to inherit BaseModal.

    interface Modal {
        explicitCloseOnly?: boolean;
        modalElement: HTMLElement;
        close(): void;
    }
    Index

    Properties

    explicitCloseOnly?: boolean

    If true, does not allow the modal to be closed by clicking off of the modal.

    modalElement: HTMLElement

    The modal element.

    Methods