(identifier: Id)
| 226 | * @since 4.0.0 |
| 227 | */ |
| 228 | export const make = <const Id extends string>(identifier: Id): HttpApi<Id, never> => |
| 229 | makeProto({ |
| 230 | identifier, |
| 231 | groups: {}, |
| 232 | annotations: Context.empty() |
| 233 | }) |
| 234 | |
| 235 | /** |
| 236 | * Describes the groups and endpoints in an `HttpApi`. |
nothing calls this directly
no test coverage detected