Files
web/server/routers/hotels/input.ts
2024-07-04 15:05:02 +02:00

9 lines
175 B
TypeScript

import { z } from "zod"
import { Lang } from "@/constants/languages"
export const getHotelInputSchema = z.object({
hotelId: z.string(),
language: z.nativeEnum(Lang),
})