16 lines
450 B
TypeScript
16 lines
450 B
TypeScript
import type { z } from "zod"
|
|
|
|
import type {
|
|
breakfastPackageInputSchema,
|
|
roomPackagesInputSchema,
|
|
} from "@/server/routers/hotels/input"
|
|
import type { packagesSchema } from "@/server/routers/hotels/output"
|
|
|
|
export interface BreackfastPackagesInput
|
|
extends z.input<typeof breakfastPackageInputSchema> {}
|
|
|
|
export interface PackagesInput
|
|
extends z.input<typeof roomPackagesInputSchema> {}
|
|
|
|
export type Packages = z.output<typeof packagesSchema>
|