/** * interact.js 1.10.27 * * Copyright (c) 2012-present Taye Adeyemi * 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