UNPKG

265 BTypeScriptView Raw
1import { BodyOptions } from '../decorator-options/BodyOptions';
2/**
3 * Allows to inject a request body value to the controller action parameter.
4 * Must be applied on a controller action parameter.
5 */
6export declare function Body(options?: BodyOptions): Function;