mirror of
https://github.com/aljazceru/claude-code-viewer.git
synced 2025-12-26 17:54:23 +01:00
7 lines
121 B
TypeScript
7 lines
121 B
TypeScript
import { z } from "zod";
|
|
|
|
export const TextContentSchema = z.object({
|
|
type: z.literal("text"),
|
|
text: z.string(),
|
|
});
|