mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
24 lines
1.4 KiB
Markdown
24 lines
1.4 KiB
Markdown
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||
|
|
||
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [Runtime](./puppeteer.protocol.runtime.md) > [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. |
|
||
|
|