Files
web/packages/trpc/lib/routers/contentstack/destinationCountryPage/input.ts

8 lines
174 B
TypeScript

import { z } from "zod"
import { Country } from "@scandic-hotels/common/constants/country"
export const getCityPagesInput = z.object({
country: z.nativeEnum(Country),
})