@egjs/axes
Version:
A module used to change the information of user action entered by various input devices such as touch screen or mouse into the logical virtual coordinates. You can easily create a UI that responds to user actions.
17 lines (14 loc) • 522 B
text/typescript
/*
* Copyright (c) 2015 NAVER Corp.
* egjs projects are licensed under the MIT license
*/
import Axes from "./Axes";
export { PanInput } from "./inputType/PanInput";
export { RotatePanInput } from "./inputType/RotatePanInput";
export { PinchInput } from "./inputType/PinchInput";
export { WheelInput } from "./inputType/WheelInput";
export { MoveKeyInput } from "./inputType/MoveKeyInput";
export default Axes;
export { AXES_METHODS, AXES_EVENTS } from "./const";
export * from "./types";
export * from "./reactive";