(path: string, router: IRouter)
| 218 | } |
| 219 | |
| 220 | use(path: string, router: IRouter): void { |
| 221 | this.app.use(path, router); |
| 222 | } |
| 223 | |
| 224 | useWithMiddleware(path: string, router: IRouter, middleware: any): void { |
| 225 | this.app.use(path, middleware, router); |
no outgoing calls