/** * The MultitouchInputMode class provides values for the * inputMode property in the flash.ui.Multitouch class. * These values set the type of touch events the Flash runtime dispatches * when the user interacts with a touch-enabled device. */ export declare class MultitouchInputMode { /** * Specifies that TransformGestureEvent, PressAndTapGestureEvent, * and GestureEvent events are dispatched for the related user interaction supported by the current environment, * and other touch events (such as a simple tap) are interpreted as mouse events. */ static GESTURE: string; /** * Specifies that all user contact with a touch-enabled device is interpreted as a type of mouse event. */ static NONE: string; /** * Specifies that events are dispatched only for basic touch events, * such as a single finger tap. When you use this setting, * events listed in the TouchEvent class are dispatched; events listed in the TransformGestureEvent, * PressAndTapGestureEvent, and GestureEvent classes are not dispatched. */ static TOUCH_POINT: string; } //# sourceMappingURL=MultitouchInputMode.d.ts.map