UNPKG

@qite/tide-booking-component

Version:

React Booking wizard & Booking product component for Tide

28 lines (25 loc) 549 B
export interface Settings { officeId: number; catalogueId: number; agentId?: number; basePath: string; language: string; includeFlights?: boolean; priceMode: number; icons?: string; apiUrl?: string; apiKey?: string; addProductToQuery?: boolean; isOffer?: boolean; alternativeActionText?: string alternativeAction?: () => void; } export interface ProductRoom { adults: number; children: number; childAges: number[]; } export interface DateRange { fromDate?: Date; toDate?: Date; }