UNPKG

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) 360 B
import type { RecursivePartial } from "../../Types/RecursivePartial"; import type { IOptions } from "../../Interfaces/Options/IOptions"; export declare class Presets { private static presets; static getPreset(preset: string): RecursivePartial<IOptions> | undefined; static addPreset(presetKey: string, options: RecursivePartial<IOptions>): void; }