IInternalSymbolItem
[ Interface ]
export interface IInternalSymbolItem {
value: any;
type: string;
persist?: boolean;
readonly?: boolean;
}
Describes an internal symbol.
Properties
Name | Type | Description |
---|---|---|
value | Default value of the symbol | |
type | Data type of the symbol | |
persist [ optional ] | Defines whether the most recent symbol value should persist in the browser. | |
readonly [ optional ] | Defines whether the symbol is read/write or read only. |
Available from version 1.12 |