14 lines
276 B
TypeScript
14 lines
276 B
TypeScript
import type { Packages } from "@scandic-hotels/trpc/types/packages"
|
|
|
|
export interface SharedPriceRowProps {
|
|
bedType:
|
|
| {
|
|
description: string
|
|
type: string
|
|
roomTypeCode: string
|
|
}
|
|
| undefined
|
|
nights: number
|
|
packages: Packages | null
|
|
}
|