Skip to main content
The Deno 2 Release Candidate is here
Learn more
Go to Latest
interface Protocol.Runtime.CallArgument
import { type Protocol } from "https://deno.land/x/puppeteer@14.1.1/vendor/puppeteer-core/puppeteer/api-docs-entry.js";
const { CallArgument } = Protocol.Runtime;

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

Properties

optional
value: any

Primitive value or serializable javascript object.

optional
unserializableValue: UnserializableValue

Primitive value which can not be JSON-stringified.

optional
objectId: RemoteObjectId

Remote object handle.