mirror of
https://github.com/aljazceru/claude-code-viewer.git
synced 2026-01-05 22:54:23 +01:00
8 lines
159 B
TypeScript
8 lines
159 B
TypeScript
import { z } from "zod";
|
|
|
|
export const SummaryEntrySchema = z.object({
|
|
type: z.literal("summary"),
|
|
summary: z.string(),
|
|
leafUuid: z.string().uuid(),
|
|
});
|