| 2 | import { z } from 'zod'; |
| 3 | |
| 4 | export interface Post { |
| 5 | id: string; |
| 6 | title: string; |
| 7 | description: string | null; |
| 8 | content: string | null; |
| 9 | published: boolean; |
| 10 | tags: string[]; |
| 11 | } |
| 12 | |
| 13 | const PostSchema = z.object({ |
| 14 | id: z.string(), |
no outgoing calls
no test coverage detected