interface Runtime.CallArgument
Usage in Deno
```typescript import { Runtime } from "node:node__inspector.d.ts"; ```Represents function call argument. Either remote object id
objectId
, primitive value
, unserializable primitive value or neither of (for undefined) them should be specified.optional
value: any
Primitive value or serializable javascript object.
optional
unserializableValue: UnserializableValue | undefined
Primitive value which can not be JSON-stringified.
optional
objectId: RemoteObjectId | undefined
Remote object handle.