UNPKG

473 BTypeScriptView Raw
1import type { RecursivePartial } from "../../Types";
2import { ColorAnimation } from "./ColorAnimation";
3import type { IOptionLoader } from "../Interfaces/IOptionLoader";
4import type { IHslAnimation } from "../Interfaces/IHslAnimation";
5export declare class HslAnimation implements IHslAnimation, IOptionLoader<IHslAnimation> {
6 h: ColorAnimation;
7 s: ColorAnimation;
8 l: ColorAnimation;
9 constructor();
10 load(data?: RecursivePartial<IHslAnimation>): void;
11}