@visactor/vrender-components
Version:
components library for dp visualization
11 lines (10 loc) • 384 B
TypeScript
import type { IGroup } from '@visactor/vrender-core';
import { ACustomAnimate, AnimateMode } from '@visactor/vrender-core';
export declare class GroupTransition extends ACustomAnimate<any> {
target: IGroup;
private _newElementAttrMap;
mode: AnimateMode;
onBind(): void;
onStart(): void;
onUpdate(end: boolean, ratio: number, out: Record<string, any>): void;
}