dagre-d3-es
Version:
<p align="center"> <a href="https://tbo47.github.io/" ><img src="https://img.shields.io/badge/created_by-tbo47-blue.svg" alt="Created by tbo47"></a> <a href="https://www.npmjs.com/dagre-d3-es"><img src="https://img.shields.io/npm/v/dagre-d3-es.svg?log
22 lines (21 loc) • 951 B
TypeScript
export function addDummyNode(g: any, type: any, attrs: any, name: any): string;
export function simplify(g: any): Graph<any, any, any>;
export function asNonCompoundGraph(g: any): Graph<any, any, any>;
export function successorWeights(g: any): import("lodash").Dictionary<{}>;
export function predecessorWeights(g: any): import("lodash").Dictionary<{}>;
export function intersectRect(rect: any, point: any): {
x: any;
y: any;
};
export function buildLayerMatrix(g: any): any[][];
export function normalizeRanks(g: any): void;
export function removeEmptyRanks(g: any): void;
export function addBorderNode(g: any, prefix: any, rank: any, order: any, ...args: any[]): string;
export function maxRank(g: any): any;
export function partition(collection: any, fn: any): {
lhs: any[];
rhs: any[];
};
export function time(name: any, fn: any): any;
export function notime(name: any, fn: any): any;
import { Graph } from '../graphlib/index.js';