UNPKG
@thetoto/openfl
Version:
latest (9.0.2-custom)
9.0.2-custom
9.0.2-blendmode
A fast, productive library for 2D cross-platform development.
www.openfl.org
openfl/openfl-js
@thetoto/openfl
/
lib
/
openfl
/
events
/
EventPhase.d.ts
18 lines
(12 loc)
•
283 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
declare
namespace
openfl.events {
/** * The EventPhase class provides values for the `eventPhase` * property of the Event class. */
export
enum
EventPhase
{ AT_TARGET =
2
, BUBBLING_PHASE =
3
, CAPTURING_PHASE =
1
} }
export
default
openfl.events.EventPhase;