type InferToolOutput<T> = T extends object ? TOutput extends z.ZodType ? z.infer<TOutput> : any : any;
type InferToolOutput<T> = T extends object ? TOutput extends z.ZodType ? z.infer<TOutput> : any : any;
Defined in: tools/tool-definition.ts:70
Extract the output type from a tool (inferred from Zod schema)
T
