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