UNPKG
flowappplatform-appbuilder-graphs
Version:
latest (1.4.11)
1.4.11
1.4.10
1.4.9
1.4.8
1.4.3
1.4.2
1.4.1
1.4.0
1.3.2
1.3.1
1.3.0
1.2.0
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
Graph Module for Flow App Builder
github.com/TheHyphen/konva-graphs
TheHyphen/konva-graphs
flowappplatform-appbuilder-graphs
/
dist
/
interfaces
/
Component.d.ts
13 lines
(12 loc)
•
265 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
export
interface
IComponent
{
id
:
string
;
graphComponentId
:
string
;
connections
:
IConnection
[];
x
:
number
;
y
:
number
; }
export
interface
IConnection
{
fromPortId
:
string
;
toComponentId
:
string
;
fromComponentId
:
string
; }