We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d94a2d8 commit 5189c32Copy full SHA for 5189c32
packages/app/lib/modular/index.d.ts
@@ -53,9 +53,9 @@ export function getApps(): FirebaseApp[];
53
* Initializes a Firebase app with the provided options and name.
54
* @param options - Options to configure the services used in the app.
55
* @param name - The optional name of the app to initialize ('[DEFAULT]' if omitted).
56
- * @returns FirebaseApp - The initialized Firebase app.
+ * @returns Promise<FirebaseApp> - The initialized Firebase app.
57
*/
58
-export function initializeApp(options: FirebaseAppOptions, name?: string): FirebaseApp;
+export function initializeApp(options: FirebaseAppOptions, name?: string): Promise<FirebaseApp>;
59
60
/**
61
* Retrieves an instance of a Firebase app.
0 commit comments