Files
shadcn-ui/apps/www/lib/validations/og.ts
2024-01-28 12:47:45 +04:00

8 lines
162 B
TypeScript

import { z } from "zod"
export const ogImageSchema = z.object({
heading: z.string(),
type: z.string(),
mode: z.enum(["light", "dark"]).default("dark"),
})