@tsparticles/updater-life
Version:
tsParticles particles life updater
8 lines (7 loc) • 378 B
TypeScript
import { type IOptionLoader, type RecursivePartial, ValueWithRandom } from "@tsparticles/engine";
import type { ILifeDuration } from "../Interfaces/ILifeDuration.js";
export declare class LifeDuration extends ValueWithRandom implements ILifeDuration, IOptionLoader<ILifeDuration> {
sync: boolean;
constructor();
load(data?: RecursivePartial<ILifeDuration>): void;
}