File tree Expand file tree Collapse file tree 1 file changed +33
-1
lines changed Expand file tree Collapse file tree 1 file changed +33
-1
lines changed Original file line number Diff line number Diff line change @@ -70,16 +70,48 @@ export interface FirebaseApp {
70
70
/**
71
71
* @public
72
72
*
73
- * Firebase configuration object
73
+ * Firebase configuration object. Contains a set of parameters required by
74
+ * services in order to successfully communicate with Firebase server APIs
75
+ * and to associate client data with your Firebase project and
76
+ * Firebase application.
74
77
*/
75
78
export interface FirebaseOptions {
79
+ /**
80
+ * An encrypted string used when calling certain APIs that don't need to
81
+ * access private user data
82
+ * (example value: `AIzaSyDOCAbC123dEf456GhI789jKl012-MnO`).
83
+ */
76
84
apiKey ?: string ;
85
+ /**
86
+ * Auth domain for the project ID.
87
+ */
77
88
authDomain ?: string ;
89
+ /**
90
+ * Default Realtime Database URL.
91
+ */
78
92
databaseURL ?: string ;
93
+ /**
94
+ * The unique identifier for the project across all of Firebase and
95
+ * Google Cloud.
96
+ */
79
97
projectId ?: string ;
98
+ /**
99
+ * The default Cloud Storage bucket name.
100
+ */
80
101
storageBucket ?: string ;
102
+ /**
103
+ * Unique numerical value used to identify each sender that can send
104
+ * Firebse Cloud Messaging messages to client apps.
105
+ */
81
106
messagingSenderId ?: string ;
107
+ /**
108
+ * Unique identifier for the app.
109
+ */
82
110
appId ?: string ;
111
+ /**
112
+ * An ID automatically created when you enable Analytics in your
113
+ * Firebase project and register a web app.
114
+ */
83
115
measurementId ?: string ;
84
116
}
85
117
You can’t perform that action at this time.
0 commit comments