auth-profile.guard.d.ts 729 B

12345678910111213
  1. import { ActivatedRouteSnapshot, RouterStateSnapshot, UrlTree } from '@angular/router';
  2. import { Observable } from 'rxjs';
  3. import { Router } from '@angular/router';
  4. import { AuthProfileService } from './auth-profile.service';
  5. import * as i0 from "@angular/core";
  6. export declare class AuthProfileGuard {
  7. authProfileServ: AuthProfileService;
  8. router: Router;
  9. constructor(authProfileServ: AuthProfileService, router: Router);
  10. canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree;
  11. static ɵfac: i0.ɵɵFactoryDeclaration<AuthProfileGuard, never>;
  12. static ɵprov: i0.ɵɵInjectableDeclaration<AuthProfileGuard>;
  13. }