import { IAnimation, IAnimationEvent } from '@feidao-factory/animation/types'; /** * 同步动画 * @param anims IAnimation[] 多个动画对象 * @param evt IAnimation 事件 可选项 * @param repeat 重复次数 可选 * @return 无 * @see [api](https://feidao-edu.gitee.io/atom-api/modules/_browser_animation_combile_.html) * @example _combine(anims, evt, repeat); */ export default function _combine(anims: IAnimation[], evt?: IAnimationEvent, repeat?: number): void;