Interface ValueGenerator

interface ValueGenerator {
    type: "value";
    clone(): ValueGenerator;
    genValue(): number;
    toJSON(): FunctionJSON;
}

Implemented by

Properties

Methods

Properties

type: "value"

Methods

  • Returns number