fabric
Version:
Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.
10 lines • 409 B
TypeScript
import { AnimationBase } from './AnimationBase';
import type { ValueAnimationOptions } from './types';
export declare class ValueAnimation extends AnimationBase<number> {
constructor({ startValue, endValue, ...otherOptions }: ValueAnimationOptions);
protected calculate(timeElapsed: number): {
value: number;
valueProgress: number;
};
}
//# sourceMappingURL=ValueAnimation.d.ts.map