tsparticles
Version:
Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.
8 lines (7 loc) • 305 B
TypeScript
import type { IValueColor } from "../../IValueColor";
import type { IOptionLoader } from "../IOptionLoader";
import type { IHsl } from "../../IHsl";
import type { IRgb } from "../../IRgb";
export interface IColor extends IOptionLoader<IColor> {
value: string | IValueColor | IRgb | IHsl | string[];
}