puppeteer/new-docs/puppeteer.protocol.runtime.privatepropertydescriptor.md

24 lines
1.4 KiB
Markdown
Raw Normal View History

<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [puppeteer](./puppeteer.md) &gt; [Protocol](./puppeteer.protocol.md) &gt; [Runtime](./puppeteer.protocol.runtime.md) &gt; [PrivatePropertyDescriptor](./puppeteer.protocol.runtime.privatepropertydescriptor.md)
## Protocol.Runtime.PrivatePropertyDescriptor interface
Object private field descriptor.
<b>Signature:</b>
```typescript
export interface PrivatePropertyDescriptor
```
## Properties
| Property | Type | Description |
| --- | --- | --- |
| [get](./puppeteer.protocol.runtime.privatepropertydescriptor.get.md) | [RemoteObject](./puppeteer.protocol.runtime.remoteobject.md) | A function which serves as a getter for the private property, or <code>undefined</code> if there is no getter (accessor descriptors only). |
| [name](./puppeteer.protocol.runtime.privatepropertydescriptor.name.md) | string | Private property name. |
| [set](./puppeteer.protocol.runtime.privatepropertydescriptor.set.md) | [RemoteObject](./puppeteer.protocol.runtime.remoteobject.md) | A function which serves as a setter for the private property, or <code>undefined</code> if there is no setter (accessor descriptors only). |
| [value](./puppeteer.protocol.runtime.privatepropertydescriptor.value.md) | [RemoteObject](./puppeteer.protocol.runtime.remoteobject.md) | The value associated with the private property. |