Files
recipe-app/backend/dist/health/health.controller.d.ts
T
Nils-Johan Gynther 969dafdbc6
Test Suite / test (24.15.0) (push) Has been cancelled
Refactor code structure for improved readability and maintainability
2026-05-06 07:37:59 +02:00

9 lines
309 B
TypeScript

import { Response } from 'express';
import { HealthService } from './health.service';
export declare class HealthController {
private readonly healthService;
constructor(healthService: HealthService);
getHealth(res: Response): Promise<void>;
getDatabaseHealth(res: Response): Promise<void>;
}