@micro.ts/core
Version:
Microservice framework with Typescript
8 lines (7 loc) • 587 B
TypeScript
import { MethodOptions } from './types/MethodMetadataTypes';
export declare function Get(path?: string, options?: MethodOptions): MethodDecorator;
export declare function Post(path?: string, options?: MethodOptions): MethodDecorator;
export declare function Put(path?: string, options?: MethodOptions): MethodDecorator;
export declare function Options(path?: string, options?: MethodOptions): MethodDecorator;
export declare function Patch(path?: string, options?: MethodOptions): MethodDecorator;
export declare function Delete(path?: string, options?: MethodOptions): MethodDecorator;