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/`.
16 lines (15 loc) • 424 B
TypeScript
import { SlideGesture } from './slide-gesture';
export declare class SlideEdgeGesture extends SlideGesture {
edges: Array<string>;
maxEdgeStart: any;
private _d;
constructor(element: Element, opts?: any);
canStart(ev: any): boolean;
getContainerDimensions(): {
left: number;
top: number;
width: any;
height: any;
};
_checkEdge(edge: any, pos: any): boolean;
}