@egjs/flicking
Version:
Everyday 30 million people experience. It's reliable, flexible and extendable carousel.
38 lines (35 loc) • 984 B
text/typescript
/*
* Copyright (c) 2015 NAVER Corp.
* egjs projects are licensed under the MIT license
*/
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
};