@tsparticles/plugin-emitters
Version:
tsParticles emitters plugin
10 lines (9 loc) • 400 B
TypeScript
import { type IOptionLoader, type RangeValue, type RecursivePartial } from "@tsparticles/engine";
import type { IEmitterLife } from "../Interfaces/IEmitterLife.js";
export declare class EmitterLife implements IEmitterLife, IOptionLoader<IEmitterLife> {
count?: number;
delay?: RangeValue;
duration?: RangeValue;
wait: boolean;
load(data?: RecursivePartial<IEmitterLife>): void;
}