@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
19 lines • 478 B
TypeScript
export class DynamicRuleCooldownDescription {
static fromJSON(j: any): DynamicRuleCooldownDescription;
/**
*
* @type {string}
*/
id: string;
/**
*
* @type {NumericInterval}
*/
value: NumericInterval;
fromJSON({ id, value }: {
id: any;
value: any;
}): void;
}
import { NumericInterval } from "../../../../core/math/interval/NumericInterval.js";
//# sourceMappingURL=DynamicRuleCooldownDescription.d.ts.map