UNPKG

@minimaltech/ra-infra

Version:

Minimal Technology ReactJS Infrastructure

11 lines (10 loc) 283 B
export interface IUseConfirmReturn { message?: string; confirm: (opts: { message: string; }) => Promise<boolean>; handleClose: () => void; handleConfirm: () => void; handleAbort: () => void; } export declare const useConfirm: () => IUseConfirmReturn;