(this: HttpApiEndpoint.AnyWithProps, prefix: PathSegment)
| 801 | }) |
| 802 | }, |
| 803 | prefix(this: HttpApiEndpoint.AnyWithProps, prefix: PathSegment) { |
| 804 | return makeProto({ |
| 805 | ...this, |
| 806 | path: HttpRouter.prefixPath(this.path, prefix) as PathSegment |
| 807 | }) |
| 808 | }, |
| 809 | middleware(this: HttpApiEndpoint.AnyWithProps, middleware: HttpApiMiddleware.TagClassAny) { |
| 810 | return makeProto({ |
| 811 | ...this, |
nothing calls this directly
no test coverage detected