tween24
Version:
Tween24.js is animation library that enables fast coding using method chains.
16 lines (15 loc) • 397 B
TypeScript
export declare class StyleColorUpdater {
private _key;
private _color;
private _r;
private _g;
private _b;
private _originalValue;
constructor(key: string, colorCode: string);
init(start: string): void;
update(progress: number): string;
getDelta(): number;
clone(): StyleColorUpdater;
toString(): string;
get originalValue(): number | string;
}