/** * Application-level error class with a numeric error code. */ export declare class AppError extends Error { code: number; constructor(message: string, code: number); } /** * Initializes the application. Any unhandled errors are caught and * wrapped in an AppError before being logged. */ export declare function init(): void; //# sourceMappingURL=app.d.ts.map