taxonomy/lib/validations/post.ts

9 lines
208 B
TypeScript
Raw Permalink Normal View History

2022-10-26 13:18:06 +00:00
import * as z from "zod"
export const postPatchSchema = z.object({
title: z.string().min(3).max(128).optional(),
// TODO: Type this properly from editorjs block types?
content: z.any().optional(),
})