I am trying to use the Firebase increment function and it's giving me an error. I am using Ionic 5.2.7.
Here is my import statement for firebase
import { firebase } from '@firebase/app';
(if I try to import from firebase like - import { firebase } from 'firebase/app'; - the import fails, so I can't do that.)
My error is on the increment statement:
const itemsCount = firebase.firestore.FieldValue.increment(1);
The error is: "Property 'firestore' does not exist on type 'FirebaseNamespace'."