Rezi
    Preparing search index...

    Type Alias ToolApprovalDialogProps

    ToolApprovalDialogProps: Readonly<
        {
            accessibleLabel?: string;
            focusable?: boolean;
            focusedAction?: "allow"
            | "deny"
            | "allowSession";
            height?: number;
            id: string;
            key?: string;
            onAllowForSession?: () => void;
            onClose: () => void;
            onPress: (action: "allow" | "deny") => void;
            open: boolean;
            request: ToolRequest;
            width?: number;
        },
    >

    Props for ToolApprovalDialog widget. Modal for reviewing tool execution.