l даже есть импорт в appmodule.ts, но это не может исправить, я попробовал один раз ответить, но ничего не помогло. так что кто-нибудь может мне помочь
import { Component, OnInit } from '@angular/core';
import { AngularFireAuth } from '@angular/fire/auth';
import { auth } from 'firebase/app';
import { Router } from '@angular/router';
@Component({
selector: 'app-login',
templateUrl: './login.page.html',
styleUrls: ['./login.page.scss'],
})
export class LoginPage implements OnInit {
mobile = '';
password = '';
constructor(public afAuth: AngularFireAuth, private router: Router) {}
ngOnInit() {}
async login() {
const { mobile, password } = this;
try {
const res = await this.afAuth.auth.signInWithEmailAndPassword(
mobile + '@saveme.com',
password
);
} catch (err) {
console.dir(err)
}
}
}