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
/
Graphs
/
utils
/
Set.d.ts
11 lines
(10 loc)
•
307 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
declare
class
Set
{
private
static
_d3set;
static
d3set
:
(
array
:
any
) =>
any
;
static
All
:
() =>
(
array
:
any
) =>
any
;
static
has
:
(
d
:
any
) =>
any
;
static
add
:
(
d
:
any
) =>
any
;
static
remove
:
(
d
:
any
) =>
any
;
static
empty
:
() =>
any
;
static
size
:
() =>
any
; }