Preparing search index...

    Configuration properties for the validation dialog.

    interface ValidationDialogProps {
        title: string;
        content: string;
        confirmText: string;
        cancelText?: string;
        onConfirm?: () => void;
        onCancel?: () => void;
    }
    Index

    Properties

    title: string
    content: string
    confirmText: string
    cancelText?: string
    onConfirm?: () => void
    onCancel?: () => void