@antv/g2
Version:
the Grammar of Graphics in Javascript
14 lines (13 loc) • 420 B
TypeScript
import { DisplayObject } from '@antv/g';
import { AnimationComponent as AC } from '../runtime';
import { Animation } from './types';
export type MorphingOptions = Animation & {
split: 'pack' | SplitFunction;
};
type SplitFunction = (shape: DisplayObject, count: number) => string[];
/**
* Morphing animations.
* @todo Support more split function.
*/
export declare const Morphing: AC<MorphingOptions>;
export {};