UNPKG

fabric

Version:

Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.

10 lines 408 B
import { AnimationBase } from './AnimationBase'; import type { ArrayAnimationOptions } from './types'; export declare class ArrayAnimation extends AnimationBase<number[]> { constructor({ startValue, endValue, ...options }: ArrayAnimationOptions); protected calculate(timeElapsed: number): { value: number[]; valueProgress: number; }; } //# sourceMappingURL=ArrayAnimation.d.ts.map