UNPKG

@nowzoo/ngx-firebase-auth

Version:

Angular components for Firebase email-first sign in and out-of-band (oob) actions (reset password, etc).

17 lines (16 loc) 592 B
import { OnInit, EventEmitter } from '@angular/core'; import { AngularFireAuth } from 'angularfire2/auth'; import { auth } from 'firebase/app'; import { INgxFirebaseAuthOobSuccess } from '../../shared'; export declare class OobVerifyEmailComponent implements OnInit { private _afAuth; oobCode: string; success: EventEmitter<INgxFirebaseAuthOobSuccess>; screen: 'wait' | 'error' | 'success'; info: auth.ActionCodeInfo; submitting: boolean; unhandledError: auth.Error; constructor(_afAuth: AngularFireAuth); readonly auth: auth.Auth; ngOnInit(): void; }