@antv/g2
Version:
the Grammar of Graphics in Javascript
29 lines (28 loc) • 430 B
TypeScript
import { Action } from '..';
/**
* @ignore
* View 移动的 Action
*/
declare class Move extends Action {
private starting;
private isMoving;
private startPoint;
private startMatrix;
/**
* 开始移动
*/
start(): void;
/**
* 移动
*/
move(): void;
/**
* 结束移动
*/
end(): void;
/**
* 回滚
*/
reset(): void;
}
export default Move;