ValueType Enum
enum representing the possible types of a shared object
Signature
export declare enum ValueType
Flags
Flag | Alerts | Description |
---|---|---|
Plain | The value is a plain JavaScript object or handle. If a plain object, it may contain handles deeper within. | |
Shared | Deprecated |
The value is a shared object |
Plain
The value is a plain JavaScript object or handle. If a plain object, it may contain handles deeper within.
Signature
Plain = 1
Shared
The value is a shared object
This API is deprecated and will be removed in a future release.
Instead store the handle of the shared object, rather than the shared object itself.
Signature
Shared = 0