From f2cf1592e2bde10eef810b6d731c0b5aa97b4348 Mon Sep 17 00:00:00 2001 From: Mingyu Jeon Date: Fri, 20 Apr 2018 19:07:21 -0700 Subject: [PATCH] fix(app): add automaticDataCollectionEnabled (#1572) `automaticDataCollectionEnabled` was added to FirebaseApp in 4.13.0 --- src/core/firebase.app.module.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/firebase.app.module.ts b/src/core/firebase.app.module.ts index 969a30364..62b733b1d 100644 --- a/src/core/firebase.app.module.ts +++ b/src/core/firebase.app.module.ts @@ -12,6 +12,7 @@ import { FirebaseFirestore } from '@firebase/firestore-types'; export class FirebaseApp implements _FirebaseApp { name: string; + automaticDataCollectionEnabled: boolean; options: {}; auth: () => FirebaseAuth; database: (databaseURL?: string) => FirebaseDatabase; @@ -46,4 +47,4 @@ export class AngularFireModule { ] } } -} \ No newline at end of file +}