Skip to main content
Runtime.CallArgument - inspector/promises - Node documentation
interface Runtime.CallArgument

Usage in Deno

import { Runtime } from "node:inspector/promises";

Represents function call argument. Either remote object id <code>objectId</code>, primitive <code>value</code>, unserializable primitive value or neither of (for undefined) them should be specified.

Properties

optional
value: any

Primitive value or serializable javascript object.

Primitive value which can not be JSON-stringified.

optional
objectId: RemoteObjectId | undefined

Remote object handle.