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/`.
12 lines (11 loc) • 434 B
TypeScript
import { NavController } from './nav-controller';
import { SlideEdgeGesture } from '../../gestures/slide-edge-gesture';
export declare class SwipeBackGesture extends SlideEdgeGesture {
private _nav;
edges: Array<string>;
threshold: string;
constructor(element: HTMLElement, opts: any, _nav: NavController);
onSlideStart(): void;
onSlide(slide: any, ev: any): void;
onSlideEnd(slide: any, ev: any): void;
}