UNPKG

resolved-graph

Version:

Generates and updates a graph of nodes and links with resolved relationships for ease of traversal and extraction

6 lines (5 loc) 115 B
import { Node } from './Node'; export interface Link<T> extends Node<T> { to: string; from: string; }