mirror of
https://github.com/nunocoracao/blowfish.git
synced 2026-01-30 15:31:52 +00:00
config redirect
This commit is contained in:
+4
@@ -0,0 +1,4 @@
|
||||
export function insertCluster(elem: any, node: any): void;
|
||||
export function getClusterTitleWidth(elem: any, node: any): number;
|
||||
export function clear(): void;
|
||||
export function positionCluster(node: any): void;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
export default createLabel;
|
||||
declare function createLabel(_vertexText: any, style: any, isTitle: any, isNode: any): SVGTextElement | SVGForeignObjectElement;
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
export function clear(): void;
|
||||
export function insertEdgeLabel(elem: any, edge: any): void;
|
||||
export function positionEdgeLabel(edge: any, paths: any): void;
|
||||
export function intersection(node: any, outsidePoint: any, insidePoint: any): {
|
||||
x: any;
|
||||
y: number;
|
||||
} | {
|
||||
x: number;
|
||||
y: any;
|
||||
};
|
||||
export function insertEdge(elem: any, e: any, edge: any, clusterDb: any, diagramType: any, graph: any): {
|
||||
updatedPath: any;
|
||||
originalPath: any;
|
||||
};
|
||||
+1
@@ -0,0 +1 @@
|
||||
export function render(elem: any, graph: any, markers: any, diagramtype: any, id: any): void;
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
declare namespace _default {
|
||||
export { node };
|
||||
export { circle };
|
||||
export { ellipse };
|
||||
export { polygon };
|
||||
export { rect };
|
||||
}
|
||||
export default _default;
|
||||
import node from "./intersect-node.js";
|
||||
import circle from "./intersect-circle.js";
|
||||
import ellipse from "./intersect-ellipse.js";
|
||||
import polygon from "./intersect-polygon.js";
|
||||
import rect from "./intersect-rect.js";
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
export default intersectCircle;
|
||||
/**
|
||||
* @param node
|
||||
* @param rx
|
||||
* @param point
|
||||
*/
|
||||
declare function intersectCircle(node: any, rx: any, point: any): {
|
||||
x: any;
|
||||
y: any;
|
||||
};
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
export default intersectEllipse;
|
||||
/**
|
||||
* @param node
|
||||
* @param rx
|
||||
* @param ry
|
||||
* @param point
|
||||
*/
|
||||
declare function intersectEllipse(node: any, rx: any, ry: any, point: any): {
|
||||
x: any;
|
||||
y: any;
|
||||
};
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
export default intersectLine;
|
||||
/**
|
||||
* Returns the point at which two lines, p and q, intersect or returns undefined if they do not intersect.
|
||||
*
|
||||
* @param p1
|
||||
* @param p2
|
||||
* @param q1
|
||||
* @param q2
|
||||
*/
|
||||
declare function intersectLine(p1: any, p2: any, q1: any, q2: any): {
|
||||
x: number;
|
||||
y: number;
|
||||
} | undefined;
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
export default intersectNode;
|
||||
/**
|
||||
* @param node
|
||||
* @param point
|
||||
*/
|
||||
declare function intersectNode(node: any, point: any): any;
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
export default intersectPolygon;
|
||||
/**
|
||||
* Returns the point ({x, y}) at which the point argument intersects with the node argument assuming
|
||||
* that it has the shape specified by polygon.
|
||||
*
|
||||
* @param node
|
||||
* @param polyPoints
|
||||
* @param point
|
||||
*/
|
||||
declare function intersectPolygon(node: any, polyPoints: any, point: any): any;
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
export default intersectRect;
|
||||
declare function intersectRect(node: any, point: any): {
|
||||
x: any;
|
||||
y: any;
|
||||
};
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
export default insertMarkers;
|
||||
declare function insertMarkers(elem: any, markerArray: any, type: any, id: any): void;
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
export let clusterDb: {};
|
||||
export function clear(): void;
|
||||
export function extractDescendants(id: any, graph: any): any[];
|
||||
export function validate(graph: any): boolean;
|
||||
export function findNonClusterChild(id: any, graph: any): any;
|
||||
export function adjustClustersAndEdges(graph: any, depth: any): void;
|
||||
export function extractor(graph: any, depth: any): void;
|
||||
export function sortNodesByHierarchy(graph: any): any;
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
export function insertNode(elem: any, node: any, dir: any): void;
|
||||
export function setNodeElem(elem: any, node: any): void;
|
||||
export function clear(): void;
|
||||
export function positionNode(node: any): any;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
export default note;
|
||||
declare function note(parent: any, node: any): any;
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
/**
|
||||
* @param parent
|
||||
* @param w
|
||||
* @param h
|
||||
* @param points
|
||||
*/
|
||||
export function insertPolygonShape(parent: any, w: any, h: any, points: any): any;
|
||||
export function labelHelper(parent: any, node: any, _classes: any, isNode: any): {
|
||||
shapeSvg: any;
|
||||
bbox: any;
|
||||
halfPadding: number;
|
||||
label: any;
|
||||
};
|
||||
export function updateNodeBounds(node: any, element: any): void;
|
||||
Reference in New Issue
Block a user