feat(SW-1012): Started implementing restaurant data
This commit is contained in:
committed by
Fredrik Thorsson
parent
05006506f0
commit
63a77b215d
@@ -1,5 +1,14 @@
|
||||
import type { RestaurantData } from "@/types/hotel"
|
||||
import type { RestaurantData, RestaurantOpeningHours } from "@/types/hotel"
|
||||
|
||||
export interface RestaurantBarSidePeekProps {
|
||||
restaurants: RestaurantData[]
|
||||
}
|
||||
|
||||
export interface RestaurantBarItemProps {
|
||||
restaurant: RestaurantData
|
||||
}
|
||||
|
||||
export interface RestaurantBarOpeningHoursProps {
|
||||
openingHours: RestaurantOpeningHours
|
||||
alternateOpeningHours?: RestaurantOpeningHours
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user