Files
parsshop-back/dist/app.controller.d.ts
2026-03-26 12:25:46 +03:00

11 lines
259 B
TypeScript

import { AppService } from './app.service';
export declare class AppController {
private readonly appService;
constructor(appService: AppService);
getHealth(): {
status: string;
service: string;
timestamp: string;
};
}