UNPKG

508 BTypeScriptView Raw
1import type { IColorAnimation } from "../Interfaces/IColorAnimation";
2import type { RangeValue, RecursivePartial } from "../../Types";
3import type { IOptionLoader } from "../Interfaces/IOptionLoader";
4/**
5 * @category Options
6 */
7export declare class ColorAnimation implements IColorAnimation, IOptionLoader<IColorAnimation> {
8 count: number;
9 enable: boolean;
10 offset: RangeValue;
11 speed: number;
12 sync: boolean;
13 constructor();
14 load(data?: RecursivePartial<IColorAnimation>): void;
15}