claude-code-data
    Preparing search index...

    Type Alias ToolUseBlock

    A tool call issued by Claude. input contains the tool-specific arguments.

    type ToolUseBlock = {
        id: string;
        input: Record<string, unknown>;
        name: string;
        type: "tool_use";
    }
    Index

    Properties

    Properties

    id: string
    input: Record<string, unknown>
    name: string
    type: "tool_use"