Files
tabungin/apps/api/dist/app.controller.d.ts
2025-10-09 12:52:41 +07:00

7 lines
181 B
TypeScript

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