8 lines
259 B
TypeScript
8 lines
259 B
TypeScript
import type { BedTypeSchema } from "@/types/components/hotelReservation/enterDetails/bedType"
|
|
import type { Packages } from "@/types/requests/packages"
|
|
|
|
export interface SharedPriceRowProps {
|
|
bedType: BedTypeSchema | undefined
|
|
packages: Packages | null
|
|
}
|