11 lines
259 B
TypeScript
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;
|
|
};
|
|
}
|