package.lib.core.GestureMgr.d.ts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zrender Show documentation
Show all versions of zrender Show documentation
A lightweight graphic library providing 2d draw for Apache ECharts
The newest version!
import { ZRRawTouchEvent } from './types';
import Displayable from '../graphic/Displayable';
export declare class GestureMgr {
private _track;
constructor();
recognize(event: ZRRawTouchEvent, target: Displayable, root: HTMLElement): {
type: string;
target: Displayable;
event: ZRRawTouchEvent;
};
clear(): this;
_doTrack(event: ZRRawTouchEvent, target: Displayable, root: HTMLElement): void;
_recognize(event: ZRRawTouchEvent): {
type: string;
target: Displayable;
event: ZRRawTouchEvent;
};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy