UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

11 lines (10 loc) 307 B
export declare class DoubleTapDetector { private readonly maxDistance; private readonly maxInterval; private lastTime; private lastX; private lastY; constructor(maxDistance: number, maxInterval: number); isDoubleTap(x: number, y: number): boolean; reset(): void; }