(path: string | RegExp | unknown = "/", ...args: unknown[])
| 36 | * @httpMethod |
| 37 | */ |
| 38 | export function Get(path: string | RegExp | unknown = "/", ...args: unknown[]) { |
| 39 | return Operation(...[OperationVerbs.GET, path].concat(args)); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * This method is just like the `router.METHOD()` methods, except that it matches all HTTP methods (verbs). |
no test coverage detected