Files
wr.do/lib/validations/og.ts
2024-07-26 22:08:57 +08:00

8 lines
163 B
TypeScript

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