tsparticles
Version:
Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.
15 lines (14 loc) • 500 B
TypeScript
import type { IImageShape } from "../../../../Interfaces/Options/Particles/Shape/IImageShape";
import type { RecursivePartial } from "../../../../Types/RecursivePartial";
export declare class ImageShape implements IImageShape {
get replace_color(): boolean;
set replace_color(value: boolean);
height: number;
replaceColor: boolean;
src: string;
width: number;
fill?: boolean;
close?: boolean;
constructor();
load(data?: RecursivePartial<IImageShape>): void;
}