basic working app currently wworking on the sync to work
Build APK / build (push) Canceled after 0s

This commit is contained in:
2026-08-06 11:16:47 +02:00
commit 793e2d9044
192 changed files with 42523 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { Request, Response, NextFunction } from 'express';
export declare class AppError extends Error {
code: string;
message: string;
statusCode: number;
details?: Record<string, any> | undefined;
constructor(code: string, message: string, statusCode?: number, details?: Record<string, any> | undefined);
}
export declare function errorHandler(err: Error, req: Request, res: Response, next: NextFunction): void;
export declare function notFoundHandler(req: Request, res: Response): void;
//# sourceMappingURL=errorHandler.d.ts.map