UNPKG
fybdp-d3-kg
Version:
latest (1.0.1)
1.0.1
1.0.0
Knowledge Graph using React and D3.js
gitlab.fybdp.com/fuxi/d3-kg/blob/master/README.md
fybdp-d3-kg
/
dist
/
src
/
HivePlot
/
types.d.ts
20 lines
(19 loc)
•
332 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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; }