* Add middlewares for all HTTP verbs at the specified path.
(path: string, ...middlewares: MaybeLazy<Middleware<State>>[])
| 327 | * Add middlewares for all HTTP verbs at the specified path. |
| 328 | */ |
| 329 | all(path: string, ...middlewares: MaybeLazy<Middleware<State>>[]): this { |
| 330 | this.#commands.push(newHandlerCmd("ALL", path, middlewares, true)); |
| 331 | return this; |
| 332 | } |
| 333 | |
| 334 | /** |
| 335 | * Insert file routes collected in {@linkcode Builder} at this point. |
no test coverage detected