deno.com

interface Runtime.RemoteObject

Mirror object referencing original JavaScript object.

Properties #

#type: string

Object type.

#subtype: string | undefined
optional

Object subtype hint. Specified for object type values only.

#className: string | undefined
optional

Object class (constructor) name. Specified for object type values only.

#value: any
optional

Remote object value in case of primitive values or JSON values (if it was requested).

Primitive value which can not be JSON-stringified does not have value, but gets this property.

#description: string | undefined
optional

String representation of the object.

#objectId: RemoteObjectId | undefined
optional

Unique object identifier (for non-primitive values).

#preview: ObjectPreview | undefined
optional

Preview containing abbreviated property values. Specified for object type values only.

#customPreview: CustomPreview | undefined
optional