@qite/tide-booking-component
Version:
React Booking wizard & Booking product component for Tide
32 lines (26 loc) • 484 B
text/typescript
import { ReactNode } from 'react';
export interface ApiSettingsState {
apiUrl: string;
apiKey: string;
}
export enum DepartureRange {
Morning = 0,
Afternoon = 1,
Evening = 2,
Night = 3
}
// export interface TravelType {
// id: number;
// label: string;
// icon?: ReactNode;
// }
// export interface TravelClass {
// id: number;
// label: string;
// icon?: ReactNode;
// }
export interface PickerItem {
id: string;
label: string;
icon?: ReactNode;
}