9 lines
309 B
TypeScript
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>;
|
|
}
|