Symbol
[ Interface ]
export interface Symbol extends baseValue {
objectType: 'Symbol';
symbolExpression: string;
}
Extends baseValue
Represents the current value of a symbol through a symbol expression.
Properties
Name | Type | Description |
---|---|---|
objectType | 'Symbol' | Defines the relevant parser. |
SymbolExpression | A symbol expression. The current value of the symbol is read and passed on. |
Available from version 1.12 |