tsparticles
Version:
Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.
13 lines (12 loc) • 501 B
TypeScript
import type { IShadow } from "../../../Interfaces/Options/Particles/IShadow";
import type { ICoordinates } from "../../../Interfaces/ICoordinates";
import type { RecursivePartial } from "../../../Types/RecursivePartial";
import type { IColor } from "../../../Interfaces/Options/Particles/IColor";
export declare class Shadow implements IShadow {
blur: number;
color: IColor;
enable: boolean;
offset: ICoordinates;
constructor();
load(data?: RecursivePartial<IShadow>): void;
}