mirror of
https://github.com/aljazceru/claude-code-viewer.git
synced 2026-01-10 09:04:24 +01:00
8 lines
169 B
TypeScript
8 lines
169 B
TypeScript
import { z } from "zod";
|
|
|
|
export const ThinkingContentSchema = z.object({
|
|
type: z.literal("thinking"),
|
|
thinking: z.string(),
|
|
signature: z.string().optional(),
|
|
});
|