Interface ToolRequestParameterProperty

interface ToolRequestParameterProperty {
    anyOf?: ToolRequestParameterProperty[];
    type?: "string" | "number" | "boolean" | "object" | "array" | "integer" | "null";
    [key: string]: unknown;
}

Indexable

[key: string]: unknown

Properties

Properties

type?: "string" | "number" | "boolean" | "object" | "array" | "integer" | "null"