reest
Version:
A library inspired by NestJS's elegance, specifically designed for efficient serverless API development on AWS Lambda. It streamlines the creation of microservices with automated Swagger documentation and enhanced decorator-based middleware support, makin
6 lines (5 loc) • 386 B
TypeScript
export declare const Get: (path: string, options?: any) => MethodDecorator;
export declare const Post: (path: string, options?: any) => MethodDecorator;
export declare const Put: (path: string, options?: any) => MethodDecorator;
export declare const Patch: (path: string, options?: any) => MethodDecorator;
export declare const Delete: (path: string, options?: any) => MethodDecorator;