8 lines
174 B
TypeScript
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),
|
|
})
|