UNPKG

ionic-framework

Version:

The ionic-framework package comes with both Javascript and Sass frontend dependencies, located in the root of the package, and a Node API, located in `tooling/`.

33 lines (32 loc) 848 B
import { NgZone } from 'angular2/core'; import { IonicApp } from '../app/app'; import { Config } from '../../config/config'; /** * @private */ export declare class TapClick { private app; private zone; private lastTouch; private disableClick; private lastActivated; private usePolyfill; private activator; private startCoord; private pointerMove; constructor(config: Config, app: IonicApp, zone: NgZone); touchStart(ev: any): void; touchEnd(ev: any): void; mouseDown(ev: any): void; mouseUp(ev: any): void; pointerStart(ev: any): void; pointerEnd(ev: any): void; pointerCancel(ev: any): void; moveListeners(shouldAdd: any): void; click(ev: any): void; isDisabledNativeClick(): boolean; } /** * @private */ export declare function isActivatable(ele: any): boolean;