UNPKG

452 BTypeScriptView Raw
1import type { IEmitterLife } from "../Interfaces/IEmitterLife";
2import type { RecursivePartial } from "../../../../Types";
3import type { IOptionLoader } from "../../../../Options/Interfaces/IOptionLoader";
4export declare class EmitterLife implements IEmitterLife, IOptionLoader<IEmitterLife> {
5 count?: number;
6 delay?: number;
7 duration?: number;
8 wait: boolean;
9 constructor();
10 load(data?: RecursivePartial<IEmitterLife>): void;
11}