diff --git a/etc/firebase-admin.api.md b/etc/firebase-admin.api.md index be3f34c209..04eb39dadc 100644 --- a/etc/firebase-admin.api.md +++ b/etc/firebase-admin.api.md @@ -132,6 +132,4 @@ export interface ServiceAccount { projectId?: string; } -// (No @packageDocumentation comment for this package) - ``` diff --git a/src/app/lifecycle.ts b/src/app/lifecycle.ts index b2414ab3b6..4c8963b557 100644 --- a/src/app/lifecycle.ts +++ b/src/app/lifecycle.ts @@ -253,7 +253,7 @@ export function initializeApp(options?: AppOptions, appName: string = DEFAULT_AP /** * Returns an existing {@link App} instance for the provided name. If no name - * is provided the the default app name is used. + * is provided the default app name is used. * * @param appName - Optional name of the `App` instance. * diff --git a/src/index.ts b/src/index.ts index 1d38018798..f740313f02 100644 --- a/src/index.ts +++ b/src/index.ts @@ -35,6 +35,12 @@ https://firebase.google.com/docs/web/setup console.error(message); } +/** + * Firebase App and SDK initialization. + * + * @packageDocumentation + */ + export { App, AppOptions, FirebaseArrayIndexError } from './app/core'; export { initializeApp, getApp, getApps, deleteApp } from './app/lifecycle';