@mui/x-internal-gestures
Version:
The core engine of GestureEvents, a modern and robust multi-pointer gesture detection library for JavaScript.
19 lines • 496 B
JavaScript
import { Gesture } from "../../core/index.js";
export class MockBadOverrideGesture extends 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 new MockBadOverrideGesture({
name: this.name
});
}
}