UNPKG

ez-firebase-auth

Version:
22 lines (21 loc) 742 B
import { OnInit } from '@angular/core'; import { FormBuilder, FormGroup, FormControl } from '@angular/forms'; import 'rxjs/add/operator/takeUntil'; import * as firebase from 'firebase'; import { EzfaService } from '../../ezfa.service'; import { BaseComponent } from '../base.component'; export declare class ChangeEmailRouteComponent extends BaseComponent implements OnInit { protected fb: FormBuilder; user: firebase.User | null; fg: FormGroup; id: string; success: boolean; submitting: boolean; unhandledError: firebase.FirebaseError | null; constructor(fb: FormBuilder, service: EzfaService); ngOnInit(): void; submit(): void; validateNotSame(fc: FormControl): { same: boolean; }; }