(email: string, password: string)
| 659 | |
| 660 | export class EmailAuthProvider { |
| 661 | static credential(email: string, password: string) { |
| 662 | return AuthCredential.fromNative(FIREmailAuthProvider.credentialWithEmailPassword(email, password)); |
| 663 | } |
| 664 | |
| 665 | static credentialWithLink(email: string, link: string) { |
| 666 | return AuthCredential.fromNative(FIREmailAuthProvider.credentialWithEmailLink(email, link)); |
nothing calls this directly
no test coverage detected