IInternalSymbolItem

[ Interface ]

export interface IInternalSymbolItem {
    value: any;
    type: string;
    persist?: boolean;
    readonly?: boolean;
}

Describes an internal symbol.

Properties

Name

Type

Description

value

any

Default value of the symbol

type

string

Data type of the symbol

persist [ optional ]

boolean

Defines whether the most recent symbol value should persist in the browser.

readonly [ optional ]

boolean

Defines whether the symbol is read/write or read only.

IInternalSymbolItem 1:

Available from version 1.12