25 lines
597 B
JavaScript
25 lines
597 B
JavaScript
/**
|
|
* interact.js 1.10.27
|
|
*
|
|
* Copyright (c) 2012-present Taye Adeyemi <dev@taye.me>
|
|
* Released under the MIT License.
|
|
* https://raw.github.com/taye/interact.js/main/LICENSE
|
|
*/
|
|
|
|
class PointerInfo {
|
|
constructor(id, pointer, event, downTime, downTarget) {
|
|
this.id = void 0;
|
|
this.pointer = void 0;
|
|
this.event = void 0;
|
|
this.downTime = void 0;
|
|
this.downTarget = void 0;
|
|
this.id = id;
|
|
this.pointer = pointer;
|
|
this.event = event;
|
|
this.downTime = downTime;
|
|
this.downTarget = downTarget;
|
|
}
|
|
}
|
|
export { PointerInfo };
|
|
//# sourceMappingURL=PointerInfo.js.map
|