@egjs/flicking
Version:
Everyday 30 million people experience. It's reliable, flexible and extendable carousel.
11 lines (10 loc) • 356 B
TypeScript
import State from "./State";
import { FlickingContext } from "../types";
declare class DraggingState extends State {
readonly type: 2;
readonly holding = true;
readonly playing = true;
onChange(e: any, { moveCamera, transitTo }: FlickingContext): void;
onRelease(e: any, context: FlickingContext): void;
}
export default DraggingState;