Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
`;
viewSourceOfNgxAuthFirebaseuiComponent: boolean;
viewSourceOfNgxAuthFirebaseuiLoginComponent: boolean;
viewSourceOfNgxAuthFirebaseuiRegisterComponent: boolean;
viewSourceOfTheUserComponent: boolean;
viewSourceOfTheProvidersComponentRow: boolean;
viewSourceOfTheProvidersComponentColumn: boolean;
viewSourceOfTheProvidersComponentThemes: boolean;
snackbarSubscription: Subscription;
public index: number;
private _color: string;
providers = [AuthProvider.Facebook];
themes = Theme;
constructor(private titleService: Title,
public auth: AngularFireAuth,
public router: Router,
public snackbar: MatSnackBar) {
}
ngOnInit() {
this.titleService.setTitle('Home | ngx-auth-firebaseui');
}
get color(): string {
return this.error ? 'warn' : 'primary';
}