UNPKG
vtseditor
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
VTS Editor
github.com/stefanwerfling/vtseditor
stefanwerfling/vtseditor
vtseditor
/
SchemaEditor
/
GlobalDragDrop.ts
19 lines
(16 loc)
•
261 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/** * Global drag drop data */
export type GlobalDragDropData = { type:
string
; unid:
string
; };
/** * Globa drag drop */
export
class
GlobalDragDrop
{
/** * drag data */
public
static
dragData: GlobalDragDropData|
null
=
null
; }