es6-tween
Version:
ES6 implementation of amazing tween.js
50 lines (49 loc) • 730 B
JavaScript
import {
add,
onTick,
autoPlay,
get,
getAll,
has,
isRunning,
now,
onRequestTick,
FrameThrottle,
ToggleLagSmoothing,
Plugins,
remove,
removeAll,
update
} from './core'
import Easing from './Easing'
import Interpolation from './Interpolation'
import Tween from './Tween'
import Timeline from './Timeline'
import Selector from './selector'
import Interpolator from './Interpolator'
import * as utils from './constants'
import './shim'
export {
Plugins,
Selector,
Interpolator,
onTick,
has,
get,
getAll,
removeAll,
remove,
add,
now,
update,
autoPlay,
isRunning,
onRequestTick,
FrameThrottle,
ToggleLagSmoothing,
Tween,
Timeline,
Easing,
Interpolation,
utils
}