Feat/SW-1454 listing skeletons * feat(SW-1453): added skeleton for city listning * feat(SW-1454): added skeleton for hotel listning Approved-by: Fredrik Thorsson
8 lines
155 B
TypeScript
8 lines
155 B
TypeScript
import { z } from "zod"
|
|
|
|
import { Country } from "@/types/enums/country"
|
|
|
|
export const getCityPagesInput = z.object({
|
|
country: z.nativeEnum(Country),
|
|
})
|