Files
web/server/routers/contentstack/breadcrumbs/input.ts
2024-05-06 15:13:41 +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),
})