UNPKG

@tsparticles/plugin-emitters

Version:

tsParticles emitters plugin

10 lines (9 loc) 462 B
import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine"; import { EmitterShapeReplace } from "./EmitterShapeReplace.js"; import type { IEmitterShape } from "../Interfaces/IEmitterShape.js"; export declare class EmitterShape implements IEmitterShape, IOptionLoader<IEmitterShape> { options: Record<string, unknown>; readonly replace: EmitterShapeReplace; type: string; load(data?: RecursivePartial<IEmitterShape>): void; }