mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 05:21:52 +08:00
fix(gesture/tapclick): ios support
This commit is contained in:
31
packages/core/src/components.d.ts
vendored
31
packages/core/src/components.d.ts
vendored
@ -1000,6 +1000,36 @@ declare global {
|
||||
}
|
||||
|
||||
|
||||
import {
|
||||
GestureController as IonGestureController
|
||||
} from './components/gesture-controller/gesture-controller';
|
||||
|
||||
declare global {
|
||||
interface HTMLIonGestureControllerElement extends IonGestureController, HTMLStencilElement {
|
||||
}
|
||||
var HTMLIonGestureControllerElement: {
|
||||
prototype: HTMLIonGestureControllerElement;
|
||||
new (): HTMLIonGestureControllerElement;
|
||||
};
|
||||
interface HTMLElementTagNameMap {
|
||||
"ion-gesture-controller": HTMLIonGestureControllerElement;
|
||||
}
|
||||
interface ElementTagNameMap {
|
||||
"ion-gesture-controller": HTMLIonGestureControllerElement;
|
||||
}
|
||||
namespace JSX {
|
||||
interface IntrinsicElements {
|
||||
"ion-gesture-controller": JSXElements.IonGestureControllerAttributes;
|
||||
}
|
||||
}
|
||||
namespace JSXElements {
|
||||
export interface IonGestureControllerAttributes extends HTMLAttributes {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
import {
|
||||
Gesture as IonGesture
|
||||
} from './components/gesture/gesture';
|
||||
@ -2660,7 +2690,6 @@ declare global {
|
||||
onionScroll?: ScrollCallback;
|
||||
onionScrollEnd?: ScrollCallback;
|
||||
onionScrollStart?: ScrollCallback;
|
||||
scrollEvents?: boolean;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user