interface DialogV2WaitOptions {
    render: DialogV2RenderCallback;
    close: DialogV2CloseCallback;
    rejectClose: boolean;
}

Properties

A synchronous function to invoke whenever the dialog is rendered.

A synchronous function to invoke when the dialog is closed under any circumstances.

rejectClose: boolean

Throw a Promise rejection if the dialog is dismissed.