У меня такая ошибка:
Property 'sendEmailVerification' does not exist on type 'Promise<User>'.ts(2339)
мой код:
// Send email verfificaiton when new user sign up
SendVerificationMail() {
return this.afAuth.currentUser.sendEmailVerification()
.then(() => {
this.router.navigate(['verify-email-address']);
})
}
Я не знаю причину ошибки и что мне не хватает?