@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.
15 lines (12 loc) • 313 B
text/typescript
/*
* Copyright (c) 2015 NAVER Corp.
* egjs projects are licensed under the MIT license
*/
import Axes, * as modules from "./index";
for (const name in modules) {
(Axes as any)[name] = (modules as any)[name];
}
declare const module: any;
module.exports = Axes;
export default Axes;
export * from "./index";