@nowzoo/ngx-firebase-auth
Version:
Angular components for Firebase email-first sign in and out-of-band (oob) actions (reset password, etc).
13 lines (12 loc) • 501 B
TypeScript
import { AngularFireAuth } from 'angularfire2/auth';
import { auth } from 'firebase/app';
import { INgxFirebaseAuthRememberRecord } from './shared';
export declare class NgxFirebaseAuthService {
private _afAuth;
static rememberKey: string;
constructor(_afAuth: AngularFireAuth);
readonly auth: auth.Auth;
readonly storage: Storage;
getRemembered(): INgxFirebaseAuthRememberRecord;
setRemembered(remember: boolean, email: string): Promise<INgxFirebaseAuthRememberRecord>;
}