UNPKG

angular-firebase-authorizator

Version:

Beta version of authorizator for angular linked to firebase, it creates a model in firestore to assign permissions to users an roles, and creates a view to update this permissions

16 lines (15 loc) 777 B
import { OnInit, ChangeDetectorRef } from '@angular/core'; import { ProgressbarService } from '../../services/progressbar.service'; import { AuthorizatorConfig } from '../../authorizator.config'; import { AuthorizatorService } from '../../services/authorizator.service'; export declare class AngularFirebaseAuthotizatorComponent implements OnInit { progressbarservice: ProgressbarService; private cd; private authorizatorConfig; private authroizatorservice; rootFirebasePath: string; isUsersWaitBarShowing: boolean; isRolesWaitBarShowing: boolean; constructor(progressbarservice: ProgressbarService, cd: ChangeDetectorRef, authorizatorConfig: AuthorizatorConfig, authroizatorservice: AuthorizatorService); ngOnInit(): void; }