(
this: HttpApi.AnyWithProps,
group: HttpApiGroup.HttpApiGroup.AnyWithProps
)
| 145 | return pipeArguments(this, arguments) |
| 146 | }, |
| 147 | add( |
| 148 | this: HttpApi.AnyWithProps, |
| 149 | group: HttpApiGroup.HttpApiGroup.AnyWithProps |
| 150 | ) { |
| 151 | return makeProto({ |
| 152 | identifier: this.identifier, |
| 153 | groups: Record.set(this.groups, group.identifier, group), |
| 154 | errorSchema: this.errorSchema, |
| 155 | annotations: this.annotations, |
| 156 | middlewares: this.middlewares |
| 157 | }) |
| 158 | }, |
| 159 | addHttpApi( |
| 160 | this: HttpApi.AnyWithProps, |
| 161 | api: HttpApi.AnyWithProps |
no test coverage detected