Здравствуйте. Случайно обновил firebase и тут же в консоле полетели ошибки. Помогите, как исправить?
TypeError: Cannot read property 'ServerValue' of undefined
На emailAuthProvider тоже ругается.
Конфигурация приложения;
import app from "firebase/app";
import "firebase/auth";
import "firebase/database";
import "firebase/storage"
const config = {
*тут конфиг*
};
class Firebase {
constructor() {
app.initializeApp(config);
this.serverValue = app.database.ServerValue;
this.emailAuthProvider = app.auth.EmailAuthProvider;
this.auth = app.auth();
this.db = app.database();
this.storage = app.storage();
this.googleProvider = new app.auth.GoogleAuthProvider();
this.facebookProvider = new app.auth.FacebookAuthProvider();
this.twitterProvider = new app.auth.TwitterAuthProvider();
}