keyframe-interpolate.d.ts 335 B

1234
  1. import type { DisplayObject } from '../shapes';
  2. import type { GenericAnimation } from '../animation';
  3. import { type Interpolatable } from './interpolate';
  4. export declare function keyframeInterpolate<T extends Interpolatable>(element: DisplayObject, from: T, to: T, options: GenericAnimation): import("@antv/g-lite").IAnimation | null;