interface ModalArgs {
    modalIsOpened: boolean;
    onConfirm: ((v) => void);
    onDecline: ((v) => void);
    options: EbmmModalOptions;
}

Properties

modalIsOpened: boolean
onConfirm: ((v) => void)

Type declaration

    • (v): void
    • Parameters

      • v: any

      Returns void

onDecline: ((v) => void)

Type declaration

    • (v): void
    • Parameters

      • v: any

      Returns void