Files
event-qr/dist/app.controller.d.ts
2025-11-29 12:26:58 +01:00

7 lines
181 B
TypeScript

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