Merged in feat/sw-1602-preliminary-receipt (pull request #1595)
feat/sw-1602 preliminary receipt * feat(sw-1602): create page for preliminary receipt * Add link to my stay page Approved-by: Pontus Dreij
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
import type { Room } from "@/types/hotel"
|
||||
import type { BookingConfirmation } from "@/types/trpc/routers/booking/confirmation"
|
||||
import type { Ancillaries } from "../../myPages/myStay/ancillaries"
|
||||
|
||||
export interface SpecificationProps {
|
||||
ancillaryPackages: Ancillaries | null
|
||||
booking: BookingConfirmation["booking"]
|
||||
currency?: string
|
||||
}
|
||||
|
||||
export interface TotalProps {
|
||||
booking: BookingConfirmation["booking"]
|
||||
currency?: string
|
||||
}
|
||||
|
||||
export interface FooterProps {
|
||||
booking: BookingConfirmation["booking"]
|
||||
room:
|
||||
| (Room & {
|
||||
bedType: Room["roomTypes"][number]
|
||||
})
|
||||
| null
|
||||
}
|
||||
Reference in New Issue
Block a user