Files
web/server/routers/contentstack/breadcrumbs/input.ts
2024-05-28 08:29:52 +02:00

9 lines
210 B
TypeScript

import { z } from "zod"
import { Lang } from "@/constants/languages"
export const getBreadcrumbsInput = z.object({
href: z.string().min(1, { message: "href is required" }),
locale: z.nativeEnum(Lang),
})