mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
45 lines
1.3 KiB
TypeScript
45 lines
1.3 KiB
TypeScript
// Type definitions for FastClick v1.0.3
|
|
// Project: https://github.com/ftlabs/fastclick
|
|
// Definitions by: Shinnosuke Watanabe <https://github.com/shinnn>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
interface FastClickObject {
|
|
lastTouchIdentifier: number;
|
|
layer: Element;
|
|
tapDelay: number;
|
|
targetElement: any;
|
|
touchBoundary: number;
|
|
touchStartX: number;
|
|
touchStartY: number;
|
|
trackingClick: boolean;
|
|
trackingClickStart: number;
|
|
destroy(): void;
|
|
determineEventType(targetElement: any): string;
|
|
findControl(labelElement: any /* EventTarget | HTMLLabelElement */): any;
|
|
focus(targetElement: any /* EventTarget | Element */): void;
|
|
getTargetElementFromEventTarget(eventTarget: EventTarget): any;
|
|
needsClick(target: any /* EventTarget | Element */): boolean;
|
|
needsFocus(target: any /* EventTarget | Element */): boolean;
|
|
}
|
|
|
|
interface FastClickOptions {
|
|
touchBoundary?: number;
|
|
tapDelay?: number;
|
|
}
|
|
|
|
interface FastClickStatic {
|
|
new(layer: any, options?: FastClickOptions): FastClickObject;
|
|
attach(layer: any, options?: FastClickOptions): FastClickObject;
|
|
}
|
|
|
|
declare module "fastclick" {
|
|
function fastclick(layer: any, options?: FastClickOptions): FastClickObject;
|
|
namespace fastclick {
|
|
var FastClick: FastClickStatic;
|
|
}
|
|
|
|
export = fastclick;
|
|
}
|
|
|
|
declare var FastClick: FastClickStatic;
|