(
path: string,
route: MaybeLazy<Route<State>>,
config?: RouteConfig,
)
| 254 | } |
| 255 | |
| 256 | route( |
| 257 | path: string, |
| 258 | route: MaybeLazy<Route<State>>, |
| 259 | config?: RouteConfig, |
| 260 | ): this { |
| 261 | this.#commands.push(newRouteCmd(path, route, config, true)); |
| 262 | return this; |
| 263 | } |
| 264 | |
| 265 | /** |
| 266 | * Add middlewares for GET requests at the specified path. |
no test coverage detected