package openfl.events {
	
	
	/**
	 * @externs
	 * The EventPhase class provides values for the `eventPhase`
	 * property of the Event class.
	 */
	final public class EventPhase {
		
		public static const AT_TARGET:uint = 2;
		public static const BUBBLING_PHASE:uint = 3;
		public static const CAPTURING_PHASE:uint = 1;
		
	}
	
	
}