mirror of
https://github.com/oiov/wr.do.git
synced 2026-05-22 17:07:42 +08:00
8 lines
163 B
TypeScript
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"),
|
|
})
|