(@QueryParam(toNumber) val: number)
| 25 | } |
| 26 | @HttpGet('/toNumber') |
| 27 | toNumber(@QueryParam(toNumber) val: number): any { |
| 28 | return { data: val }; |
| 29 | } |
| 30 | // Verify without handler |
| 31 | @HttpGet('/query') |
| 32 | query(@QueryParam() search: string): any { |
nothing calls this directly
no test coverage detected