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
/
KnowledgeGraph
/
GraphContext.d.ts
12 lines
(11 loc)
•
254 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
React
from
'react'
;
export
declare
const
createGraphCtx
:
(
opts
:
any
) =>
{
getGraph
:
any
;
layout
:
any
;
theme
:
any
; };
export
declare
const
GraphContext
:
React
.
Context
<{
getGraph
:
any
;
layout
:
any
;
theme
:
any
; }>;