Type of QueryParam decorator
Injects a query parameter into controller handler
class ExampleController { @Get('/') index(@QueryParam('param') param : string) { // param is "foobar" for url "/?param=foobar" } }
Generated using TypeDoc
Type of QueryParam decorator