UNPKG

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) 308 B
import type { IColor } from "../Particles/IColor"; import type { IOptionLoader } from "../IOptionLoader"; export interface IBackground extends IOptionLoader<IBackground> { color?: IColor | string; opacity?: number; image?: string; position?: string; repeat?: string; size?: string; }