@egjs/flicking
Version:
Everyday 30 million people experience. It's reliable, flexible and extendable carousel.
48 lines (47 loc) • 1.33 kB
TypeScript
/**
* Event type object with event name strings of {@link Flicking}
* @example
* ```ts
* import { EVENTS } from "@egjs/flicking";
* EVENTS.MOVE_START; // "moveStart"
* ```
*/
export declare const EVENTS: {
/** ready event */
readonly READY: "ready";
/** beforeResize event */
readonly BEFORE_RESIZE: "beforeResize";
/** afterResize event */
readonly AFTER_RESIZE: "afterResize";
/** holdStart event */
readonly HOLD_START: "holdStart";
/** holdEnd event */
readonly HOLD_END: "holdEnd";
/** moveStart event */
readonly MOVE_START: "moveStart";
/** move event */
readonly MOVE: "move";
/** moveEnd event */
readonly MOVE_END: "moveEnd";
/** willChange event */
readonly WILL_CHANGE: "willChange";
/** changed event */
readonly CHANGED: "changed";
/** willRestore event */
readonly WILL_RESTORE: "willRestore";
/** restored event */
readonly RESTORED: "restored";
/** select event */
readonly SELECT: "select";
/** needPanel event */
readonly NEED_PANEL: "needPanel";
/** visibleChange event */
readonly VISIBLE_CHANGE: "visibleChange";
/** reachEdge event */
readonly REACH_EDGE: "reachEdge";
/**
* panelChange event
* @since 4.1.0
*/
readonly PANEL_CHANGE: "panelChange";
};