* Adds every group from another `HttpApi` while preserving its annotation scope. * * **When to use** * * Use when you want to compose an API from groups declared and annotated under another API. * * **Details** * * The added API is flattened into this API rather than retained
(
api: HttpApi<Id2, Groups2>
)
| 84 | * groups already present in this API. They remain scoped to the groups and endpoints being added. |
| 85 | */ |
| 86 | addHttpApi<Id2 extends string, Groups2 extends HttpApiGroup.Constraint>( |
| 87 | api: HttpApi<Id2, Groups2> |
| 88 | ): HttpApi<Id, Groups | Groups2> |
| 89 |
no outgoing calls
no test coverage detected