interface Runtime.RemoteObject
Usage in Deno
import { Runtime } from "node:inspector/promises";
Mirror object referencing original JavaScript object.
type: string
Object type.
optional
subtype: string | undefined
Object subtype hint. Specified for <code>object</code> type values only.
optional
className: string | undefined
Object class (constructor) name. Specified for <code>object</code> type values only.
optional
value: any
Remote object value in case of primitive values or JSON values (if it was requested).
optional
unserializableValue: UnserializableValue | undefined
Primitive value which can not be JSON-stringified does not have <code>value</code>, but gets this property.
optional
description: string | undefined
String representation of the object.
optional
objectId: RemoteObjectId | undefined
Unique object identifier (for non-primitive values).
optional
preview: ObjectPreview | undefined
Preview containing abbreviated property values. Specified for <code>object</code> type values only.
optional
customPreview: CustomPreview | undefined