Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

error on clean install: Property 'automaticDataCollectionEnabled' is missing in type 'FirebaseApp' #1

Open
AustinHatem opened this issue May 1, 2018 · 2 comments

Comments

@AustinHatem
Copy link

ERROR in node_modules/angularfire2/firebase.app.module.d.ts(10,22): error TS2720: Class 'FirebaseApp' incorrectly implements class 'FirebaseApp'. Did you mean to extend 'FirebaseApp' and inherit its members as a subclass?
Property 'automaticDataCollectionEnabled' is missing in type 'FirebaseApp'.

I get this error when i clone and run. I can fix this by installing: "@firebase/app": "^0.1.10". This has to do with the latest version of firestore I guess.

@ghost
Copy link

ghost commented May 2, 2018

Workaround: add "automaticDataCollectionEnabled: boolean;" to the "angularfire2 firebase.app.module.d.ts" file FirebaseApp class.

`export declare class FirebaseApp implements FBApp {
name: string;
automaticDataCollectionEnabled: boolean;
options: {};
auth: () => FirebaseAuth;
database: () => FirebaseDatabase;
messaging: () => FirebaseMessaging;
storage: () => FirebaseStorage;
delete: () => Promise;
firestore: () => FirebaseFirestore;

}`

See Issue 1574

@EdricChan03
Copy link

@ebduhon Alternatively, update AngularFire2 to the latest version which should fix this issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants