@mui/x-internal-gestures
Version:
The core engine of GestureEvents, a modern and robust multi-pointer gesture detection library for JavaScript.
24 lines (23 loc) • 596 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.MockBadCloneGesture = void 0;
var _core = require("../../core");
class MockBadCloneGesture extends _core.Gesture {
constructor(...args) {
super(...args);
this.state = {};
this.isSinglePhase = void 0;
this.eventType = void 0;
this.optionsType = void 0;
this.mutableOptionsType = void 0;
this.mutableStateType = void 0;
}
// eslint-disable-next-line class-methods-use-this
resetState() {}
clone() {
return this;
}
}
exports.MockBadCloneGesture = MockBadCloneGesture;