@universis/common
Version:
Universis - common directives and services
22 lines (21 loc) • 1.03 kB
TypeScript
import { AfterViewInit, OnDestroy, TemplateRef, ViewContainerRef } from '@angular/core';
import { ActivatedUser } from '../../auth/services/activated-user.service';
import { AuthGuard } from '../../auth/guards/auth.guard';
import { Subscription } from 'rxjs';
import * as i0 from "@angular/core";
export declare class IfLocationDirective implements AfterViewInit, OnDestroy {
private activateUser;
private view;
private authGuard;
private template;
private $implicit?;
subscription?: Subscription;
constructor(activateUser: ActivatedUser, view: ViewContainerRef, authGuard: AuthGuard, template: TemplateRef<any>);
ngOnDestroy(): void;
set assign(value: string);
get value(): string | undefined;
set value(value: string | undefined);
ngAfterViewInit(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<IfLocationDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<IfLocationDirective, "[if-location]", never, { "assign": "if-location"; }, {}, never, never, false, never>;
}