@netgrif/components
Version:
Netgrif Application Engine frontend Angular components
20 lines (19 loc) • 1.18 kB
TypeScript
import { OnDestroy, OnInit } from '@angular/core';
import { Subscription } from "rxjs";
import { Router } from "@angular/router";
import { AuthenticationService, PublicUrlResolverService, RedirectService, SessionService, UserService } from '@netgrif/components-core';
import * as i0 from "@angular/core";
export declare class DefaultPublicResolverComponent implements OnInit, OnDestroy {
protected _userService: UserService;
protected _sessionService: SessionService;
protected _router: Router;
protected _auth: AuthenticationService;
protected _publicResolver: PublicUrlResolverService;
protected redirectService: RedirectService;
protected _userSub: Subscription;
constructor(_userService: UserService, _sessionService: SessionService, _router: Router, _auth: AuthenticationService, _publicResolver: PublicUrlResolverService, redirectService: RedirectService);
ngOnInit(): void;
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<DefaultPublicResolverComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<DefaultPublicResolverComponent, "nc-default-public-resolver", never, {}, {}, never, never, false, never>;
}