Function
Param
(
property?: string | (Type<PipeTransform> | PipeTransform),
...pipes: (Type<PipeTransform> | PipeTransform)[]
)
Source from the content-addressed store, hash-verified
| 687 | * @publicApi |
| 688 | */ |
| 689 | export function Param( |
| 690 | property?: string | (Type<PipeTransform> | PipeTransform), |
| 691 | ...pipes: (Type<PipeTransform> | PipeTransform)[] |
| 692 | ): ParameterDecorator { |
| 693 | return createPipesRouteParamDecorator(RouteParamtypes.PARAM)( |
| 694 | property, |
| 695 | ...pipes, |
| 696 | ); |
| 697 | } |
| 698 | |
| 699 | /** |
| 700 | * Route handler parameter decorator. Extracts the `hosts` |