mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
1.2 KiB
1.2 KiB
Home > puppeteer > Protocol > Runtime > CallArgument
Protocol.Runtime.CallArgument interface
Represents function call argument. Either remote object id objectId
, primitive value
, unserializable primitive value or neither of (for undefined) them should be specified.
Signature:
export interface CallArgument
Properties
Property | Type | Description |
---|---|---|
objectId | RemoteObjectId | Remote object handle. |
unserializableValue | UnserializableValue | Primitive value which can not be JSON-stringified. |
value | any | Primitive value or serializable javascript object. |