UNPKG

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