mirror of
https://github.com/aljazceru/claude-code-viewer.git
synced 2025-12-30 11:44:22 +01:00
10 lines
182 B
TypeScript
10 lines
182 B
TypeScript
import { z } from "zod";
|
|
|
|
export const SummaryEntrySchema = z
|
|
.object({
|
|
type: z.literal("summary"),
|
|
summary: z.string(),
|
|
leafUuid: z.string().uuid(),
|
|
})
|
|
.strict();
|