7 lines
206 B
TypeScript
7 lines
206 B
TypeScript
import { z } from "zod"
|
|
|
|
import { getBreakfastPackageInputSchema } from "@/server/routers/hotels/input"
|
|
|
|
export interface BreackfastPackagesInput
|
|
extends z.input<typeof getBreakfastPackageInputSchema> {}
|