StaticValue
[ Interface ]
export interface StaticValue extends baseValue {
objectType: 'StaticValue';
value: any;
valueType: string;
}
Extends baseValue
Represents a static value of a defined data type.
Properties
Name | Type | Description |
---|---|---|
objectType | 'StaticValue' | Defines the relevant parser. |
value | Any value. | |
ValueType | Describes the data type of the value stored in 'value'. |
Available from version 1.12 |