/** * Decorator to get one parameter in url request * @param name of the parameter * @returns */ export declare const Params: (name: string) => (target: any, propertyKey: string, index: number) => any; /** * Decorator to get body in http request * @returns */ export declare const Body: (name?: string) => (target: any, propertyKey: string, index: number) => any; /** * Decorator to get one header * @param name of the header * @returns */ export declare const Header: (name: string) => (target: any, propertyKey: string, index: number) => any; /** * Decorator to get one query parameter in url request * @param name of the query parameter * @returns */ export declare const Query: (name: string) => (target: any, propertyKey: string, index: number) => any; //# sourceMappingURL=parameters.decorator.d.ts.map