@soushians/config
Version:
13 lines (12 loc) • 522 B
TypeScript
import { AfterViewInit, ComponentFactoryResolver, ViewContainerRef, EventEmitter } from "@angular/core";
import { PartialConfig } from "../../models";
export declare class DynamicConfigComponentSelectorComponent implements AfterViewInit {
private resolver;
typeMapToDiagram: any;
dynamicComponentContainer: ViewContainerRef;
configChanged: EventEmitter<{}>;
currentComponent: any;
data: PartialConfig;
constructor(resolver: ComponentFactoryResolver);
ngAfterViewInit(): void;
}