UNPKG

@graphty/layout

Version:

graph layout algorithms based on networkx

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