(@BindNumber() val: number)
| 65 | } |
| 66 | @HttpGet('/bindNumber/:val') |
| 67 | bindNumber(@BindNumber() val: number): any { |
| 68 | return { data: val }; |
| 69 | } |
| 70 | @HttpGet('/bindBoolean/:val') |
| 71 | bindBoolean(@BindBoolean() val: boolean): any { |
| 72 | return { data: val }; |
nothing calls this directly
no test coverage detected