import { OnInit, TemplateRef, ViewContainerRef } from '@angular/core'; import { JwtAuthenticationService } from '../services/jwt-authentication.service'; import { AuthenticationUserResponse } from '../interfaces/authentication-user.response'; /** * This directive displays the given component, if it has authentication. * * @example
* @export * @class ShowAuthedDirective * @implements {OnInit} */ export declare class ShowAuthedDirective implements OnInit { private readonly templateRef; private readonly userService; private readonly viewContainer; constructor(templateRef: TemplateRef