interface AnndataConflictDialogProps {
    onClose: () => void;
    onConfirm: (prefix: string) => void;
    onError?: (error: { message: string; status?: number }) => void;
    open: boolean;
}

Properties

onClose: () => void
onConfirm: (prefix: string) => void
onError?: (error: { message: string; status?: number }) => void
open: boolean