hivest-js
Version:
A simple, fast and minimalist framework for Node.js that allows you to create modular applications with dependency injection using decorators
18 lines • 457 B
TypeScript
import { CompanyService } from './company.service';
export declare class CompanyController {
private readonly companyService;
constructor(companyService: CompanyService);
create(ctx: {
req: any;
res: any;
}): Promise<void>;
get(ctx: {
req: any;
res: any;
}): Promise<void>;
update(ctx: {
req: any;
res: any;
}): Promise<void>;
}
//# sourceMappingURL=company.controller.d.ts.map