Files
Hotel-Booking/Frontend/src/services/api/index.ts
Iliyan Angelov 0c59fe1173 updates
2025-11-17 18:26:30 +02:00

41 lines
1.5 KiB
TypeScript

export { default as apiClient } from './apiClient';
export { default as authService } from './authService';
export type * from './authService';
export { default as roomService } from './roomService';
export type * from './roomService';
export { default as bannerService } from './bannerService';
export type * from './bannerService';
export { default as reviewService } from './reviewService';
export type * from './reviewService';
export { default as favoriteService } from './favoriteService';
export type * from './favoriteService';
export { default as bookingService } from './bookingService';
export type * from './bookingService';
export { default as paymentService } from './paymentService';
export type * from './paymentService';
export { default as invoiceService } from './invoiceService';
export type * from './invoiceService';
export { default as userService } from './userService';
export type * from './userService';
export { default as serviceService } from './serviceService';
export type * from './serviceService';
export { default as promotionService } from './promotionService';
export type * from './promotionService';
export { default as reportService } from './reportService';
export { default as dashboardService } from './dashboardService';
export { default as auditService } from './auditService';
export type { CustomerDashboardStats, CustomerDashboardResponse } from './dashboardService';
export type * from './reportService';
export type * from './auditService';