Sửa lỗi backend để chạy phần đăng ký
This commit is contained in:
Vendored
+2
@@ -1,11 +1,13 @@
|
||||
interface TourState {
|
||||
currentTour: any;
|
||||
legs: any[];
|
||||
publicTours: any[];
|
||||
userRole: string | null;
|
||||
setTour: (tour: any) => void;
|
||||
updateLegs: (legs: any[]) => void;
|
||||
optimizeRouting: () => Promise<void>;
|
||||
fetchTour: (id: number) => Promise<void>;
|
||||
fetchPublicTours: () => Promise<void>;
|
||||
}
|
||||
export declare const useTourStore: import("zustand").UseBoundStore<import("zustand").StoreApi<TourState>>;
|
||||
export {};
|
||||
|
||||
Reference in New Issue
Block a user