(identifier: Id)
| 204 | const makeProto = <Id extends string, Groups extends HttpApiGroup.Constraint>( |
| 205 | options: { |
| 206 | readonly identifier: Id |
| 207 | readonly groups: Record.ReadonlyRecord<string, HttpApiGroup.Constraint> |
| 208 | readonly annotations: Context.Context<never> |
| 209 | } |
| 210 | ): HttpApi<Id, Groups> => { |
| 211 | function HttpApi() {} |
| 212 | Object.setPrototypeOf(HttpApi, Proto) |
| 213 | return Object.assign(HttpApi, options) as any |
| 214 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…