UNPKG

ngx-diagrams

Version:

This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 7.2.0.

7 lines (6 loc) 369 B
import { PortModel } from '../models/port.model'; import { AbstractFactory } from './base.factory'; import { ViewContainerRef, ComponentRef } from '@angular/core'; export declare abstract class AbstractPortFactory<T extends PortModel = PortModel> extends AbstractFactory<T> { abstract generateWidget(port: PortModel, portHost: ViewContainerRef): ComponentRef<T>; }