Stay organized with collections
Save and categorize content based on your preferences.
Firebase configuration object. Contains a set of parameters required by services in order to successfully communicate with Firebase server APIs and to associate client data with your Firebase project and Firebase application. Typically this object is populated by the Firebase console at project setup. See also: Learn about the Firebase config object.
An ID automatically created when you enable Analytics in your Firebase project and register a web app. In versions 7.20.0 and higher, this parameter is optional.
An encrypted string used when calling certain APIs that don't need to access private user data (example value: AIzaSyDOCAbC123dEf456GhI789jKl012-MnO).
Signature:
apiKey?:string;
FirebaseOptions.appId
Unique identifier for the app.
Signature:
appId?:string;
FirebaseOptions.authDomain
Auth domain for the project ID.
Signature:
authDomain?:string;
FirebaseOptions.databaseURL
Default Realtime Database URL.
Signature:
databaseURL?:string;
FirebaseOptions.measurementId
An ID automatically created when you enable Analytics in your Firebase project and register a web app. In versions 7.20.0 and higher, this parameter is optional.
Signature:
measurementId?:string;
FirebaseOptions.messagingSenderId
Unique numerical value used to identify each sender that can send Firebase Cloud Messaging messages to client apps.
Signature:
messagingSenderId?:string;
FirebaseOptions.projectId
The unique identifier for the project across all of Firebase and Google Cloud.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2022-10-06 UTC."],[],[],null,["Firebase configuration object. Contains a set of parameters required by services in order to successfully communicate with Firebase server APIs and to associate client data with your Firebase project and Firebase application. Typically this object is populated by the Firebase console at project setup. See also: [Learn about the Firebase config object](https://firebase.google.com/docs/web/setup#config-object).\n\n**Signature:** \n\n export interface FirebaseOptions \n\nProperties\n\nFirebaseOptions.apiKey\n\nAn encrypted string used when calling certain APIs that don't need to access private user data (example value: `AIzaSyDOCAbC123dEf456GhI789jKl012-MnO`).\n\n**Signature:** \n\n apiKey?: string;\n\nFirebaseOptions.appId\n\nUnique identifier for the app.\n\n**Signature:** \n\n appId?: string;\n\nFirebaseOptions.authDomain\n\nAuth domain for the project ID.\n\n**Signature:** \n\n authDomain?: string;\n\nFirebaseOptions.databaseURL\n\nDefault Realtime Database URL.\n\n**Signature:** \n\n databaseURL?: string;\n\nFirebaseOptions.measurementId\n\nAn ID automatically created when you enable Analytics in your Firebase project and register a web app. In versions 7.20.0 and higher, this parameter is optional.\n\n**Signature:** \n\n measurementId?: string;\n\nFirebaseOptions.messagingSenderId\n\nUnique numerical value used to identify each sender that can send Firebase Cloud Messaging messages to client apps.\n\n**Signature:** \n\n messagingSenderId?: string;\n\nFirebaseOptions.projectId\n\nThe unique identifier for the project across all of Firebase and Google Cloud.\n\n**Signature:** \n\n projectId?: string;\n\nFirebaseOptions.storageBucket\n\nThe default Cloud Storage bucket name.\n\n**Signature:** \n\n storageBucket?: string;"]]