UNPKG

524 BTypeScriptView Raw
1import type { IOptionLoader } from "../Interfaces/IOptionLoader";
2import type { IValueWithRandom } from "../Interfaces/IValueWithRandom";
3import { Random } from "./Random";
4import type { RangeValue } from "../../Types/RangeValue";
5import type { RecursivePartial } from "../../Types/RecursivePartial";
6export declare class ValueWithRandom implements IValueWithRandom, IOptionLoader<IValueWithRandom> {
7 random: Random;
8 value: RangeValue;
9 constructor();
10 load(data?: RecursivePartial<IValueWithRandom>): void;
11}