Skip to main content
Module

x/puppeteer_plus/mod.ts>Protocol.Runtime.PrivatePropertyDescriptor

Deno port of puppeteer base on latest TypeScript source.
Go to Latest
interface Protocol.Runtime.PrivatePropertyDescriptor
import { type Protocol } from "https://deno.land/x/puppeteer_plus@0.14.0/mod.ts";
const { PrivatePropertyDescriptor } = Protocol.Runtime;

Object private field descriptor.

Properties

name: string

Private property name.

optional
value: RemoteObject

The value associated with the private property.

optional
get: RemoteObject

A function which serves as a getter for the private property, or undefined if there is no getter (accessor descriptors only).

optional
set: RemoteObject

A function which serves as a setter for the private property, or undefined if there is no setter (accessor descriptors only).