Function
MessageBody
(
propertyOrPipe?: string | (Type<PipeTransform> | PipeTransform),
...pipes: (Type<PipeTransform> | PipeTransform)[]
)
Source from the content-addressed store, hash-verified
| 52 | ...pipes: (Type<PipeTransform> | PipeTransform)[] |
| 53 | ): ParameterDecorator; |
| 54 | export function MessageBody( |
| 55 | propertyOrPipe?: string | (Type<PipeTransform> | PipeTransform), |
| 56 | ...pipes: (Type<PipeTransform> | PipeTransform)[] |
| 57 | ): ParameterDecorator { |
| 58 | return createPipesWsParamDecorator(WsParamtype.PAYLOAD)( |
| 59 | propertyOrPipe, |
| 60 | ...pipes, |
| 61 | ); |
| 62 | } |