@antv/x6
Version:
JavaScript diagramming library that uses SVG and HTML for rendering
7 lines (6 loc) • 461 B
TypeScript
import { Point } from '@antv/x6-geometry';
import { Edge } from '../../model/edge';
import { CellView } from '../../view/cell';
import { EdgeView } from '../../view/edge';
export declare function getAnchor(this: EdgeView, pos: Point.PointLike, terminalView: CellView, terminalMagnet: Element, type: Edge.TerminalType): Edge.NodeAnchorItem | undefined;
export declare function getViewBBox(view: CellView, quick?: boolean): import("@antv/x6-geometry").Rectangle;