can-show.directive.d.ts
492 Bytes
import { OnInit } from '@angular/core';
import { TemplateRef, ViewContainerRef } from '@angular/core';
import { B2bService } from '../_services/b2b.service';
export declare class CanShowDirective implements OnInit {
private templateRef;
private viewContainer;
private dataservice;
appCanShow: any;
constructor(templateRef: TemplateRef<any>, viewContainer: ViewContainerRef, dataservice: B2bService);
ngOnInit(): void;
}
export declare class CanShowDirectiveModule {
}