UNPKG

ucc-ui

Version:

ucc-ui components library

11 lines (10 loc) 305 B
import { UDialogProps } from './types'; export interface UDialogFnProps { single?: boolean; confirm?: () => Promise<boolean>; } export interface UDialogFnReturn { close: () => void; } declare const DialogFn: (props?: UDialogProps & UDialogFnProps) => UDialogFnReturn; export default DialogFn;