@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.
17 lines (16 loc) • 686 B
TypeScript
import { IGestureCustomProps } from "../../utilities/vg-types";
import { ACommonMouseProps } from "../abstracts/vg-pointer-props-abstract";
/**
* custom Event which is fired when the user enter into the new element
* it is triggered from AvgPointerEvents class
* it is fired when the user enters the element
*/
export declare class VgPointerEnter extends ACommonMouseProps {
constructor(mouseProp: MouseEventInit, customProps: IGestureCustomProps);
/**
* to set the cursor path or image like hand pointer image etc
* TODO since the fluctations are high between the events ,
* the image is getting fluctuated so currently hold
*/
setCursor(): void;
}