-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
DraggableEvent.ts
50 lines (45 loc) · 1.04 KB
/
DraggableEvent.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import AbstractEvent from 'shared/AbstractEvent';
import {FixMeAny} from 'shared/types';
/**
* DraggableEventData
* @interface DraggableEventData
*/
interface DraggableEventData {
draggable: FixMeAny;
}
/**
* Base draggable event
* @class DraggableEvent
* @module DraggableEvent
* @extends AbstractEvent
*/
export class DraggableEvent extends AbstractEvent<DraggableEventData> {
static type = 'draggable';
/**
* Draggable instance
* @property draggable
* @type {Draggable}
* @readonly
*/
get draggable() {
return this.data.draggable;
}
}
/**
* Draggable initialized event
* @class DraggableInitializedEvent
* @module DraggableInitializedEvent
* @extends DraggableEvent
*/
export class DraggableInitializedEvent extends DraggableEvent {
static type = 'draggable:initialize';
}
/**
* Draggable destory event
* @class DraggableInitializedEvent
* @module DraggableDestroyEvent
* @extends DraggableDestroyEvent
*/
export class DraggableDestroyEvent extends DraggableEvent {
static type = 'draggable:destroy';
}