Bun

interface

inspector.Runtime.CallArgument

interface CallArgument

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.

  • objectId?: string

    Remote object handle.

  • unserializableValue?: string

    Primitive value which can not be JSON-stringified.

  • value?: any

    Primitive value or serializable javascript object.