@zxh19890103/wik
Version:
The world-class JavaScript library for building large-scale digital warehouse both on 2D and 3D.
15 lines (14 loc) • 549 B
TypeScript
import { ReactiveLayer } from '../../mixins';
import { WikAnimation } from './Animation.class';
import { AnimationManager } from './AnimationManager.class';
export interface WithAnimate {
currentAnimation: WikAnimation;
animationManager: AnimationManager;
/**
* This method spec is not required.
*/
animate(type: string, ...args: any[]): this;
}
export declare function appendAnimation<A extends WikAnimation>(this: WithAnimate, a: A): void;
export interface ReactiveLayerWithAnimate extends ReactiveLayer, WithAnimate {
}