@@ -192,7 +192,7 @@ export class FirebaseApp implements app.App {
192192 /**
193193 * Returns the Auth service instance associated with this app.
194194 *
195- * @return The Auth service instance of this app.
195+ * @returns The Auth service instance of this app.
196196 */
197197 public auth ( ) : Auth {
198198 const fn = require ( '../auth/index' ) . getAuth ;
@@ -202,7 +202,7 @@ export class FirebaseApp implements app.App {
202202 /**
203203 * Returns the Database service for the specified URL, and the current app.
204204 *
205- * @return The Database service instance of this app.
205+ * @returns The Database service instance of this app.
206206 */
207207 public database ( url ?: string ) : Database {
208208 const fn = require ( '../database/index' ) . getDatabaseWithUrl ;
@@ -212,7 +212,7 @@ export class FirebaseApp implements app.App {
212212 /**
213213 * Returns the Messaging service instance associated with this app.
214214 *
215- * @return The Messaging service instance of this app.
215+ * @returns The Messaging service instance of this app.
216216 */
217217 public messaging ( ) : Messaging {
218218 const fn = require ( '../messaging/index' ) . getMessaging ;
@@ -222,7 +222,7 @@ export class FirebaseApp implements app.App {
222222 /**
223223 * Returns the Storage service instance associated with this app.
224224 *
225- * @return The Storage service instance of this app.
225+ * @returns The Storage service instance of this app.
226226 */
227227 public storage ( ) : Storage {
228228 const fn = require ( '../storage/index' ) . getStorage ;
@@ -237,7 +237,7 @@ export class FirebaseApp implements app.App {
237237 /**
238238 * Returns the InstanceId service instance associated with this app.
239239 *
240- * @return The InstanceId service instance of this app.
240+ * @returns The InstanceId service instance of this app.
241241 */
242242 public instanceId ( ) : InstanceId {
243243 const fn = require ( '../instance-id/index' ) . getInstanceId ;
@@ -247,7 +247,7 @@ export class FirebaseApp implements app.App {
247247 /**
248248 * Returns the MachineLearning service instance associated with this app.
249249 *
250- * @return The Machine Learning service instance of this app
250+ * @returns The Machine Learning service instance of this app
251251 */
252252 public machineLearning ( ) : MachineLearning {
253253 const fn = require ( '../machine-learning/index' ) . getMachineLearning ;
@@ -257,7 +257,7 @@ export class FirebaseApp implements app.App {
257257 /**
258258 * Returns the ProjectManagement service instance associated with this app.
259259 *
260- * @return The ProjectManagement service instance of this app.
260+ * @returns The ProjectManagement service instance of this app.
261261 */
262262 public projectManagement ( ) : ProjectManagement {
263263 const fn = require ( '../project-management/index' ) . getProjectManagement ;
@@ -267,7 +267,7 @@ export class FirebaseApp implements app.App {
267267 /**
268268 * Returns the SecurityRules service instance associated with this app.
269269 *
270- * @return The SecurityRules service instance of this app.
270+ * @returns The SecurityRules service instance of this app.
271271 */
272272 public securityRules ( ) : SecurityRules {
273273 const fn = require ( '../security-rules/index' ) . getSecurityRules ;
@@ -277,7 +277,7 @@ export class FirebaseApp implements app.App {
277277 /**
278278 * Returns the RemoteConfig service instance associated with this app.
279279 *
280- * @return The RemoteConfig service instance of this app.
280+ * @returns The RemoteConfig service instance of this app.
281281 */
282282 public remoteConfig ( ) : RemoteConfig {
283283 const fn = require ( '../remote-config/index' ) . getRemoteConfig ;
@@ -287,7 +287,7 @@ export class FirebaseApp implements app.App {
287287 /**
288288 * Returns the name of the FirebaseApp instance.
289289 *
290- * @return The name of the FirebaseApp instance.
290+ * @returns The name of the FirebaseApp instance.
291291 */
292292 get name ( ) : string {
293293 this . checkDestroyed_ ( ) ;
@@ -297,7 +297,7 @@ export class FirebaseApp implements app.App {
297297 /**
298298 * Returns the options for the FirebaseApp instance.
299299 *
300- * @return The options for the FirebaseApp instance.
300+ * @returns The options for the FirebaseApp instance.
301301 */
302302 get options ( ) : AppOptions {
303303 this . checkDestroyed_ ( ) ;
@@ -314,7 +314,7 @@ export class FirebaseApp implements app.App {
314314 /**
315315 * Deletes the FirebaseApp instance.
316316 *
317- * @return An empty Promise fulfilled once the FirebaseApp instance is deleted.
317+ * @returns An empty Promise fulfilled once the FirebaseApp instance is deleted.
318318 */
319319 public delete ( ) : Promise < void > {
320320 this . checkDestroyed_ ( ) ;
0 commit comments