started backend conversion to typescript

This commit is contained in:
2025-10-17 12:01:38 -04:00
parent f7a0884fb3
commit cbe2cef565
20 changed files with 221 additions and 33 deletions

6
api/src/services/calendarService.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
export declare function createEvent(eventObject: any): Promise<void>;
export declare function updateEvent(eventObject: any): Promise<void>;
export declare function cancelEvent(eventID: any): Promise<void>;
export declare function getShortEventsInRange(startDate: any, endDate: any): Promise<void>;
export declare function getEventDetailed(eventID: any): Promise<void>;
//# sourceMappingURL=calendarService.d.ts.map