UNPKG

430 BTypeScriptView Raw
1import { Action } from '..';
2/**
3 * @ignore
4 * View 移动的 Action
5 */
6declare class Move extends Action {
7 private starting;
8 private isMoving;
9 private startPoint;
10 private startMatrix;
11 /**
12 * 开始移动
13 */
14 start(): void;
15 /**
16 * 移动
17 */
18 move(): void;
19 /**
20 * 结束移动
21 */
22 end(): void;
23 /**
24 * 回滚
25 */
26 reset(): void;
27}
28export default Move;