tspace-0spear
Version:
tspace-0spear is a lightweight API framework for Node.js that is fast and highly focused on providing the best developer experience. It aims to be performant HTTP & Websocket Server using uWebSockets written in C++.
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;