13 lines
236 B
TypeScript
13 lines
236 B
TypeScript
|
|
/**
|
||
|
|
* 动画和插值模块
|
||
|
|
*
|
||
|
|
* 提供缓动函数和各种插值功能
|
||
|
|
*/
|
||
|
|
|
||
|
|
export { Easing } from './Easing';
|
||
|
|
export {
|
||
|
|
Interpolation,
|
||
|
|
CachedInterpolator,
|
||
|
|
type InterpolatorFunction,
|
||
|
|
type Keyframe
|
||
|
|
} from './Interpolation';
|