UNPKG

@zxh19890103/wik

Version:

The world-class JavaScript library for building large-scale digital warehouse both on 2D and 3D.

19 lines (18 loc) 688 B
import { ImageLayer } from './basic'; import { WithAnimate, WikAnimation, AnimationManager } from './animation'; import { WithClone } from '../interfaces'; import { ImageManager } from './state'; import { OnSelect } from '../interfaces'; export declare class Bot extends ImageLayer implements WithAnimate, WithClone, OnSelect { onSelect(data?: any): void; onUnSelect(state?: any, data?: any): void; readonly animationManager: AnimationManager; readonly imageManager: ImageManager; readonly anglePhase = 90; currentAnimation: WikAnimation; /** * @remove */ animate(type: 'rotate' | 'translate', n0: number, n1?: number): this; clone(): Bot; }