tspace-spear
Version:
tspace-spear is a lightweight API framework for Node.js that is fast and highly focused on providing the best developer experience. It utilizes the native HTTP server
6 lines (5 loc) • 341 B
TypeScript
export declare const Get: (path: `/${string}`) => MethodDecorator;
export declare const Post: (path: `/${string}`) => MethodDecorator;
export declare const Put: (path: `/${string}`) => MethodDecorator;
export declare const Patch: (path: `/${string}`) => MethodDecorator;
export declare const Delete: (path: `/${string}`) => MethodDecorator;