UNPKG

590 BTypeScriptView Raw
1import { IGroup, IShape } from '../../dependents';
2import { GAnimateCfg } from '../../interface';
3import { AnimateExtraCfg } from '../interface';
4/**
5 * @ignore
6 * 沿着 x 方向放大的动画
7 * @param shape
8 * @param animateCfg
9 * @param shapeModel
10 */
11export declare function scaleInX(shape: IShape | IGroup, animateCfg: GAnimateCfg, cfg: AnimateExtraCfg): void;
12/**
13 * @ignore
14 * 沿着 y 方向放大的动画
15 * @param shape
16 * @param animateCfg
17 * @param shapeModel
18 */
19export declare function scaleInY(shape: IShape | IGroup, animateCfg: GAnimateCfg, cfg: AnimateExtraCfg): void;