@egjs/flicking
Version:
Everyday 30 million people experience. It's reliable, flexible and extendable carousel.
15 lines (14 loc) • 859 B
TypeScript
import Control from "./Control";
import SnapControl, { SnapControlOptions } from "./SnapControl";
import FreeControl, { FreeControlOptions } from "./FreeControl";
import StrictControl, { StrictControlOptions } from "./StrictControl";
import AxesController from "./AxesController";
import State from "./states/State";
import IdleState from "./states/IdleState";
import HoldingState from "./states/HoldingState";
import DraggingState from "./states/DraggingState";
import AnimatingState from "./states/AnimatingState";
import DisabledState from "./states/DisabledState";
import StateMachine from "./StateMachine";
export { Control, SnapControl, FreeControl, StrictControl, AxesController, State, IdleState, HoldingState, DraggingState, AnimatingState, DisabledState, StateMachine };
export type { SnapControlOptions, FreeControlOptions, StrictControlOptions };