UNPKG

infinity-forge

Version:
11 lines (10 loc) 294 B
import { ModalProps } from '../modal/interfaces.js'; export interface IWarningProps extends Partial<ModalProps> { onCancel?: () => void; onConfirm?: () => void; button?: { Element?: () => React.ReactNode; }; warningTitle?: string; warningDescription?: string; }