linwenling
2023-04-25 0a328ceeefff94c84b8978849dd51792c18948f1
1
2
3
4
5
6
7
8
9
import { Path } from '../util/graphic.js';
import SeriesModel from '../model/Series.js';
import Element, { ElementAnimateConfig } from 'zrender/lib/Element.js';
import { UniversalTransitionOption } from '../util/types.js';
declare type DescendentPaths = Path[];
export declare function applyMorphAnimation(from: DescendentPaths | DescendentPaths[], to: DescendentPaths | DescendentPaths[], divideShape: UniversalTransitionOption['divideShape'], seriesModel: SeriesModel, dataIndex: number, animateOtherProps: (fromIndividual: Path, toIndividual: Path, rawFrom: Path, rawTo: Path, animationCfg: ElementAnimateConfig) => void): void;
export declare function getPathList(elements: Element): DescendentPaths;
export declare function getPathList(elements: Element[]): DescendentPaths[];
export {};