13 lines
327 B
TypeScript
13 lines
327 B
TypeScript
import { z } from "zod"
|
|
|
|
import {
|
|
getBreakfastPackageInputSchema,
|
|
getRoomPackagesInputSchema,
|
|
} from "@/server/routers/hotels/input"
|
|
|
|
export interface BreackfastPackagesInput
|
|
extends z.input<typeof getBreakfastPackageInputSchema> {}
|
|
|
|
export interface PackagesInput
|
|
extends z.input<typeof getRoomPackagesInputSchema> {}
|