@nodearch/express
Version:
nodearch express server
15 lines • 974 B
TypeScript
export declare const HttpPath: (path: string) => ClassDecorator;
export declare const HttpGet: (path?: string) => MethodDecorator;
export declare const HttpHead: (path?: string) => MethodDecorator;
export declare const HttpPost: (path?: string) => MethodDecorator;
export declare const HttpPut: (path?: string) => MethodDecorator;
export declare const HttpPatch: (path?: string) => MethodDecorator;
export declare const HttpDelete: (path?: string) => MethodDecorator;
export declare const HttpOptions: (path?: string) => MethodDecorator;
export declare const HttpBody: (path?: string) => ParameterDecorator;
export declare const HttpParam: (name?: string) => ParameterDecorator;
export declare const HttpHeader: (name?: string) => ParameterDecorator;
export declare const HttpQuery: (name?: string) => ParameterDecorator;
export declare const HttpReq: () => ParameterDecorator;
export declare const HttpRes: () => ParameterDecorator;
//# sourceMappingURL=decorators.d.ts.map