Skip to content

Commit 31b10e1

Browse files
committed
marked _serverApps as internal
1 parent 345d4bd commit 31b10e1

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

common/api-review/app.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export function _removeServiceInstance<T extends Name>(app: FirebaseApp, name: T
134134
// @public
135135
export const SDK_VERSION: string;
136136

137-
// @public (undocumented)
137+
// @internal (undocumented)
138138
export const _serverApps: Map<string, FirebaseServerApp>;
139139

140140
// @public

docs-devsite/app.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ This package coordinates the communication between the different Firebase compon
5050

5151
| Variable | Description |
5252
| --- | --- |
53-
| [\_serverApps](./app.md#_serverapps) | |
5453
| [SDK\_VERSION](./app.md#sdk_version) | The current SDK version. |
5554

5655
## function(app, ...)
@@ -361,14 +360,6 @@ initializeServerApp({
361360

362361
```
363362

364-
## \_serverApps
365-
366-
<b>Signature:</b>
367-
368-
```typescript
369-
_serverApps: Map<string, FirebaseServerApp>
370-
```
371-
372363
## SDK\_VERSION
373364

374365
The current SDK version.

packages/app/src/internal.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ import { FirebaseServerAppImpl } from './firebaseServerApp';
3030
* @internal
3131
*/
3232
export const _apps = new Map<string, FirebaseApp>();
33+
34+
/**
35+
* @internal
36+
*/
3337
export const _serverApps = new Map<string, FirebaseServerApp>();
3438

3539
/**

0 commit comments

Comments
 (0)