Datalayer Desktop - v0.0.2
    Preparing search index...

    Interface DeleteConfirmationDialogProps

    interface DeleteConfirmationDialogProps {
        confirmationText: string;
        error: null | string;
        isDeleting: boolean;
        isOpen: boolean;
        item: null | DocumentItem;
        onCancel: () => void;
        onConfirm: () => void;
        onConfirmationTextChange: (text: string) => void;
    }
    Index

    Properties

    confirmationText: string
    error: null | string
    isDeleting: boolean
    isOpen: boolean
    item: null | DocumentItem
    onCancel: () => void
    onConfirm: () => void
    onConfirmationTextChange: (text: string) => void