ng7-auth
Version:
Firestore Authentication with Angular. A Fork form Anthony Nahas.
11 lines (10 loc) • 382 B
TypeScript
import { AuthProvider } from '../services/auth-process.service';
export interface ISignUpProcess {
signUp(name: string, email: string, password: string): any;
}
export interface ISignInProcess {
onSuccessEmitter: any;
onErrorEmitter: any;
signInWith(provider: AuthProvider, email?: string, password?: string): any;
resetPassword(email: string): any;
}