@learn-hunger/visual-gestures
Version:
VisualGestures.js is a package that empowers users to effortlessly control the cursor, including actions such as hover, click, drag, and drop, through precise finger movements in the air.
15 lines • 522 B
JavaScript
import { CursorObject } from "../cursor/vg-cursor";
/**
* Common interface to have common functionalities across all types of gestures or interactions
* It is created to adapt with the eye,audio gestures
* One can add common code here
*/
export class AVgCommon extends CursorObject {
/**
* It is used to clear the resources by user calling it explicitly
*/
dispose() {
window.removeEventListener("resize", this.initialiseSizes);
}
}
//# sourceMappingURL=vg-cursor-pointer-abstract.js.map