UNPKG

@graphty/layout

Version:

graph layout algorithms based on networkx

7 lines (6 loc) 159 B
/** * Layout-specific type definitions */ import { Node } from './graph'; export type Position = number[]; export type PositionMap = Record<Node, Position>;