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
6 lines
106 B
TypeScript
6 lines
106 B
TypeScript
import { z } from "zod"
|
|
|
|
export const getHotelListDataInput = z.object({
|
|
cityIdentifier: z.string(),
|
|
})
|