tsparticles
Version:
Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.
11 lines (10 loc) • 500 B
TypeScript
import type { IColor } from "../../../Interfaces/Options/Particles/IColor";
import type { IValueColor } from "../../../Interfaces/IValueColor";
import type { RecursivePartial } from "../../../Types/RecursivePartial";
import type { IRgb } from "../../../Interfaces/IRgb";
import type { IHsl } from "../../../Interfaces/IHsl";
export declare class Color implements IColor {
value: string | IValueColor | IRgb | IHsl | string[];
constructor();
load(data?: RecursivePartial<IColor>): void;
}