UNPKG

trassel

Version:
12 lines (10 loc) 385 B
import { ILayoutComponent } from "./ilayoutcomponent" import { IGraphEdge } from "./igraphedge" import { IGraphNode } from "./igraphnode" /** Internal force object structure for the layout engine */ export interface ILayoutComponentObject { id: string instance: ILayoutComponent nodeBindings: (node: IGraphNode) => boolean edgeBindings: (edge: IGraphEdge) => boolean }