UNPKG

@universis/common

Version:

Universis - common directives and services

16 lines (15 loc) 605 B
import { AfterViewInit, OnDestroy, ViewContainerRef, TemplateRef } from "@angular/core"; import { DiagnosticsService } from "../services/diagnostics.service"; import { Subscription } from "rxjs"; export declare class IfServiceDirective implements AfterViewInit, OnDestroy { private view; private template; private diagnosticsService; private $implicit; subscription: Subscription; constructor(view: ViewContainerRef, template: TemplateRef<any>, diagnosticsService: DiagnosticsService); ngOnDestroy(): void; assign: string; value: string; ngAfterViewInit(): void; }