@tsparticles/plugin-emitters
Version:
tsParticles emitters plugin
8 lines (7 loc) • 359 B
TypeScript
import { type IOptionLoader, type RangeValue, type RecursivePartial } from "@tsparticles/engine";
import type { IEmitterRate } from "../Interfaces/IEmitterRate.js";
export declare class EmitterRate implements IEmitterRate, IOptionLoader<IEmitterRate> {
delay: RangeValue;
quantity: RangeValue;
load(data?: RecursivePartial<IEmitterRate>): void;
}