UNPKG

192 BTypeScriptView Raw
1import type { IRandom } from "./IRandom";
2import type { RangeValue } from "../../Types/RangeValue";
3export interface IValueWithRandom {
4 random: boolean | IRandom;
5 value: RangeValue;
6}