@qite/tide-booking-component
Version:
React Booking wizard & Booking product component for Tide
17 lines (15 loc) • 503 B
text/typescript
export const ROOM_OPTIONS_FORM_STEP = 1;
export const FLIGHT_OPTIONS_FORM_STEP = 2;
export const OPTIONS_FORM_STEP = 3;
export const TRAVELERS_FORM_STEP = 4;
export const SUMMARY_STEP = 5;
export const CONFIRMATION_STEP = 6;
export const ERROR_STEP = 7;
export type BookingStep =
| typeof ROOM_OPTIONS_FORM_STEP
| typeof FLIGHT_OPTIONS_FORM_STEP
| typeof OPTIONS_FORM_STEP
| typeof TRAVELERS_FORM_STEP
| typeof SUMMARY_STEP
| typeof CONFIRMATION_STEP
| typeof ERROR_STEP;