UNPKG
@playcanvas/pcui-graph
Version:
latest (5.1.0)
5.1.0
5.0.0
4.1.0
4.0.1
4.0.0
3.0.2
3.0.1
3.0.0
2.1.2
2.1.1
2.1.0
2.0.0
1.1.4
1.1.3
1.0.2
1.0.1
1.0.0
A PCUI plugin for creating node-based graphs
github.com/playcanvas/pcui-graph
playcanvas/pcui-graph
@playcanvas/pcui-graph
/
types
/
selected-item.d.ts
14 lines
(13 loc)
•
300 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export
default
SelectedItem
;
declare
class
SelectedItem
{
constructor
(
graph
:
any
,
type
:
any
,
id
:
any
,
edgeId
:
any
);
_graph
:
any
;
_type
:
any
;
_id
:
any
;
_edgeId
:
any
;
get
type
():
any
;
get
id
():
any
;
get
edgeId
():
any
;
selectItem
():
void
;
deselectItem
():
void
; }