angular / angular/angularfire

index.d.ts error while saving

Abierto
#3,292 3 comentarios 0 reacciones 0 asignados Ver en GitHub
Lenguaje dominante
TypeScript
Estrellas
7.8k
Forks
2.2k
Merge medio
22 h 28 min
PR fusionados (30 d)
6

Descripción

I am getting this error when saving this line of code

```
import { Component, OnInit } from '@angular/core';
import { AuthService } from 'src/app/shared/auth.service';

@Component({
selector: 'app-firelogin',
templateUrl: './firelogin.component.html',
styleUrls: ['./firelogin.component.scss']
})
export class FireloginComponent implements OnInit {

email: string = '';
password: string = '';

constructor(private auth : AuthService) { }

ngOnInit(): void {
}

login() {

if (this.email == '') {
alert('Lütfen mailinizi girin');
return;
}

if (this.password == '') {
alert('Lütfen şifrenizi girin');
return;
}

this.auth.login(this.email,this.password);

this.email = '';
this.password = '';

}

}
```

```
Error: node_modules/@firebase/auth-compat/dist/auth-compat/index.d.ts:53:421 - error TS1005: ',' expected.

53 import { type User, type Unsubscribe, type ActionCodeInfo, type UserCredential, type Auth, type IdTokenResult, type MultiFactorError, type MultiFactorResolver, type PopupRedirectResolver, type Dependencies, type AuthCredential, type ApplicationVerifier, type ConfirmationResult, type AuthProvider, type MultiFactorUser, type NextOrObserver, type ErrorFn, type CompleteFn, type ActionCodeSettings, type Persistence, type PhoneAuthCredential } from "@firebase/auth";
```

How can i fix this?

Guía de contribución

Abrir la guía de contribución

Línea de trabajo

Start with node_modules/@firebase/auth-compat/dist/auth-compat/index.d.ts:53 and reproduce the reported TypeScript TS1005 error using the Angular component shown. Check the project’s Angular, TypeScript, and Firebase package versions for compatibility; done means the project saves or builds without this declaration-file error.

Escrito por el modelo de indexación a partir del texto del issue.

Evaluación

Stack tecnológico
angular, firebase, typescript
Área
frontend
Tipo de issue
Error
Dificultad
3/5
Tiempo estimado
1-2 días
Estado de actividad
Estancado
Claridad
Necesita aclaración
Aptitud para principiantes
20/100

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.