Type of QueryParams decorator
Injects all query parameters as object into controller handler
class ExampleController { @Get('/') index(@QueryParams() params : object) { // params is `{ param: "foobar" }` for url "/?param=foobar" } }
Generated using TypeDoc
Type of QueryParams decorator