Type of Param decorator
Injects a path parameter into controller handler
class ExampleController { @Get('/:id') index(@Param('id') id : string) { // id is "foobar" for url "/foobar" } }
Generated using TypeDoc
Type of Param decorator