UNPKG

antdv-eoi

Version:

An enterprise-class UI design language and Vue-based implementation

10 lines (9 loc) 363 B
import type { ModalFuncProps } from './Modal'; import type { FunctionalComponent } from 'vue'; interface ConfirmDialogProps extends ModalFuncProps { afterClose?: () => void; close: (...args: any[]) => void; autoFocusButton?: null | 'ok' | 'cancel'; } declare const ConfirmDialog: FunctionalComponent<ConfirmDialogProps>; export default ConfirmDialog;