* Add middlewares for GET requests at the specified path.
(path: string, ...middlewares: MaybeLazy<Middleware<State>>[])
| 266 | * Add middlewares for GET requests at the specified path. |
| 267 | */ |
| 268 | get(path: string, ...middlewares: MaybeLazy<Middleware<State>>[]): this { |
| 269 | this.#commands.push(newHandlerCmd("GET", path, middlewares, true)); |
| 270 | return this; |
| 271 | } |
| 272 | /** |
| 273 | * Add middlewares for POST requests at the specified path. |
| 274 | */ |
no test coverage detected