mirror of
https://github.com/aljazceru/claude-code-viewer.git
synced 2026-01-16 20:14:22 +01:00
9 lines
190 B
TypeScript
9 lines
190 B
TypeScript
import { z } from "zod";
|
|
|
|
export const ToolUseContentSchema = z.object({
|
|
type: z.literal("tool_use"),
|
|
id: z.string(),
|
|
name: z.string(),
|
|
input: z.record(z.string(), z.unknown()),
|
|
});
|