UNPKG

526 BTypeScriptView Raw
1import type { IAnimation } from "../Interfaces/IAnimation";
2import type { IOptionLoader } from "../Interfaces/IOptionLoader";
3import type { RangeValue } from "../../Types/RangeValue";
4import type { RecursivePartial } from "../../Types/RecursivePartial";
5export declare class AnimationOptions implements IAnimation, IOptionLoader<IAnimation> {
6 count: RangeValue;
7 decay: RangeValue;
8 enable: boolean;
9 speed: RangeValue;
10 sync: boolean;
11 constructor();
12 load(data?: RecursivePartial<IAnimation>): void;
13}