feat(SW-885): ancillary and book next stay
This commit is contained in:
@@ -44,10 +44,10 @@ interface SetItemAction {
|
||||
type: ActionType.SELECT_ITEM
|
||||
}
|
||||
|
||||
interface SetStorageData {
|
||||
export interface SetStorageData {
|
||||
payload: {
|
||||
searchData: Location
|
||||
searchHistory: Locations
|
||||
searchData?: Location
|
||||
searchHistory?: Locations
|
||||
}
|
||||
type: ActionType.SET_STORAGE_DATA
|
||||
}
|
||||
@@ -67,4 +67,6 @@ export interface State {
|
||||
searchHistory: Locations | null
|
||||
}
|
||||
|
||||
export interface InitState extends Pick<State, "defaultLocations"> {}
|
||||
export interface InitState extends Pick<State, "defaultLocations"> {
|
||||
initialValue?: string
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
export interface PromoProps {
|
||||
buttonText: string
|
||||
href: string
|
||||
text: string
|
||||
title: string
|
||||
}
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
export interface PromosProps {
|
||||
confirmationNumber: string | null
|
||||
hotelId: string
|
||||
lastName: string | null
|
||||
}
|
||||
Reference in New Issue
Block a user