Files
bizmatch-project/bizmatch-server/dist/app.controller.d.ts
2024-02-29 10:23:41 -06:00

7 lines
184 B
TypeScript

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