Interface FunctionValueGenerator

interface FunctionValueGenerator {
    type: "function";
    clone(): FunctionValueGenerator;
    genValue(t): number;
    toJSON(): FunctionJSON;
}

Implemented by

Properties

Methods

Properties

type: "function"

Methods

  • Parameters

    • t: number

    Returns number