Interface representing a values definition.

This interface defines the structure for a values definition, specifying the type of values and any associated parameters.

interface Values {
    param: string;
    type: ValuesType;
}

Properties

Properties

param: string