| 4 | * Schema definition for tool parameters |
| 5 | */ |
| 6 | export interface ToolSchema { |
| 7 | type: string; |
| 8 | properties: Record<string, SchemaProperty>; |
| 9 | required?: string[]; |
| 10 | } |
| 11 | |
| 12 | /** |
| 13 | * Property definition in a tool schema |
nothing calls this directly
no outgoing calls
no test coverage detected