(identifier: Id, options?: {
readonly topLevel?: TopLevel | undefined
})
| 392 | * @since 4.0.0 |
| 393 | */ |
| 394 | export const make = <const Id extends string, const TopLevel extends boolean = false>(identifier: Id, options?: { |
| 395 | readonly topLevel?: TopLevel | undefined |
| 396 | }): HttpApiGroup<Id, never, TopLevel> => |
| 397 | makeProto({ |
| 398 | identifier, |
| 399 | topLevel: (options?.topLevel ?? false) as TopLevel, |
| 400 | endpoints: {}, |
| 401 | annotations: Context.empty() |
| 402 | }) |
nothing calls this directly
no test coverage detected