UNPKG

ngx-diagrams

Version:

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

8 lines (7 loc) 460 B
import { LinkModel } from '../models/link.model'; import { AbstractFactory } from './base.factory'; import { ViewContainerRef, ComponentRef } from '@angular/core'; import { DiagramEngine } from '../services/engine.service'; export declare abstract class AbstractLinkFactory<T extends LinkModel = LinkModel> extends AbstractFactory<T> { abstract generateWidget(diagramEngine: DiagramEngine, link: LinkModel, linksHost: ViewContainerRef): ComponentRef<T>; }