ft_transcendence/pong/dist/app.controller.d.ts
2023-05-02 19:15:50 +02:00

7 lines
181 B
TypeScript

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