import { GetParamOptions } from './'; /** * Body decorator options. */ export interface BodyOptions extends GetParamOptions { /** * Descriptor interface for request body. If request body does not have any of the fields of current interface, * Fulminate throws error. */ bodyPrototype?: () => T; }