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
/
Graph.d.ts
9 lines
(8 loc)
•
183 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
IComponent
}
from
"./Component"
;
export
interface
IGraph
{
id
:
string
;
name
:
string
;
components
:
IComponent
[];
width
?:
number
;
height
?:
number
; }