UNPKG

@antv/g-base

Version:

A common util collection for antv projects

14 lines (13 loc) 395 B
declare type EaseFn = (t: number) => number; /** * 根据名称获取对应的动画缓动函数 * @param type 动画缓动函数名称 */ export declare function getEasing(type: string): any; /** * 注册动画缓动函数 * @param type 动画缓动函数名称 * @param easeFn 动画缓动函数 */ export declare function registerEasing(type: string, easeFn: EaseFn): void; export {};