UNPKG

ngx-diagrams

Version:

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

13 lines (12 loc) 451 B
import { BaseAction } from './base.action'; import { PortModel } from '../models/port.model'; import { NodeModel } from '../models/node.model'; import { LinkModel } from '../models'; export declare class LinkCreatedAction extends BaseAction { sourcePort: PortModel; targetPort: PortModel; link: LinkModel; constructor(mouseX: number, mouseY: number, link: LinkModel); getOutPortNode(): NodeModel; getInPortNode(): NodeModel; }