UNPKG

fybdp-d3-kg

Version:

Knowledge Graph using React and D3.js

20 lines (19 loc) 332 B
export interface Node { id?: string; x: number; y: number; value?: any; count?: number; size?: number; } export interface Link { id?: string; source: Node; target: Node; value?: any; color?: string; } export interface Axis { label: string; attribute: string; }