(this: Top, prefix: HttpRouter.PathInput)
| 797 | return pipeArguments(this, arguments) |
| 798 | }, |
| 799 | prefix(this: Top, prefix: HttpRouter.PathInput) { |
| 800 | return makeProto({ |
| 801 | ...optionsFromEndpoint(this), |
| 802 | path: HttpRouter.prefixPath(this.path, prefix) |
| 803 | }) |
| 804 | }, |
| 805 | middleware(this: Top, middleware: HttpApiMiddleware.AnyService) { |
| 806 | return makeProto({ |
| 807 | ...optionsFromEndpoint(this), |
nothing calls this directly
no test coverage detected