* Add middlewares for DELETE requests at the specified path.
(path: string, ...middlewares: MaybeLazy<Middleware<State>>[])
| 294 | * Add middlewares for DELETE requests at the specified path. |
| 295 | */ |
| 296 | delete(path: string, ...middlewares: MaybeLazy<Middleware<State>>[]): this { |
| 297 | this.#commands.push(newHandlerCmd("DELETE", path, middlewares, true)); |
| 298 | return this; |
| 299 | } |
| 300 | /** |
| 301 | * Add middlewares for HEAD requests at the specified path. |
| 302 | */ |
no test coverage detected