You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
457 B
12 lines
457 B
|
4 months ago
|
import type { AnimationExecutor } from './types';
|
||
|
|
/**
|
||
|
|
* <zh/> 动画语法执行器
|
||
|
|
*
|
||
|
|
* <en/> Animation syntax executor
|
||
|
|
* @param element - <zh/> 要执行动画的图形 | <en/> shape to execute animation
|
||
|
|
* @param keyframes - <zh/> 动画关键帧 | <en/> animation keyframes
|
||
|
|
* @param options - <zh/> 动画语法 | <en/> animation syntax
|
||
|
|
* @returns <zh/> 动画实例 | <en/> animation instance
|
||
|
|
*/
|
||
|
|
export declare const executor: AnimationExecutor;
|