UNPKG

@nowzoo/ngx-firebase-auth

Version:

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

29 lines (28 loc) 1.03 kB
import { OnInit, AfterViewInit, EventEmitter, ElementRef } from '@angular/core'; import { FormControl, FormGroup } from '@angular/forms'; import { AngularFireAuth } from 'angularfire2/auth'; import { auth } from 'firebase/app'; import { NgxFirebaseAuthService } from '../../ngx-firebase-auth.service'; export declare class SignUpFormComponent implements OnInit, AfterViewInit { private _afAuth; private _authService; passwordInput: ElementRef; email: string; remember: boolean; rememberChange: EventEmitter<boolean>; success: EventEmitter<auth.UserCredential>; error: EventEmitter<auth.Error>; formId: string; submitting: boolean; fg: FormGroup; emailFc: FormControl; passwordFc: FormControl; nameFc: FormControl; rememberFc: FormControl; constructor(_afAuth: AngularFireAuth, _authService: NgxFirebaseAuthService); readonly auth: auth.Auth; readonly authService: NgxFirebaseAuthService; ngOnInit(): void; ngAfterViewInit(): void; submit(): void; }