jiangping
2025-07-18 22603b2519b8dcb7f9a7c7d9ba636d9aba240a59
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 {};