UNPKG

tsparticles

Version:

Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.

10 lines (9 loc) 303 B
import type { IOptionLoader } from "../../IOptionLoader"; import type { IShapeValues } from "./IShapeValues"; export interface IImageShape extends IShapeValues, IOptionLoader<IImageShape> { replace_color: boolean; replaceColor: boolean; src: string; width: number; height: number; }