mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
30 lines
2.4 KiB
Markdown
30 lines
2.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) > [PropertyDescriptor](./puppeteer.protocol.runtime.propertydescriptor.md)
|
|
|
|
## Protocol.Runtime.PropertyDescriptor interface
|
|
|
|
Object property descriptor.
|
|
|
|
<b>Signature:</b>
|
|
|
|
```typescript
|
|
export interface PropertyDescriptor
|
|
```
|
|
|
|
## Properties
|
|
|
|
| Property | Type | Description |
|
|
| --- | --- | --- |
|
|
| [configurable](./puppeteer.protocol.runtime.propertydescriptor.configurable.md) | boolean | True if the type of this property descriptor may be changed and if the property may be deleted from the corresponding object. |
|
|
| [enumerable](./puppeteer.protocol.runtime.propertydescriptor.enumerable.md) | boolean | True if this property shows up during enumeration of the properties on the corresponding object. |
|
|
| [get](./puppeteer.protocol.runtime.propertydescriptor.get.md) | [RemoteObject](./puppeteer.protocol.runtime.remoteobject.md) | A function which serves as a getter for the property, or <code>undefined</code> if there is no getter (accessor descriptors only). |
|
|
| [isOwn](./puppeteer.protocol.runtime.propertydescriptor.isown.md) | boolean | True if the property is owned for the object. |
|
|
| [name](./puppeteer.protocol.runtime.propertydescriptor.name.md) | string | Property name or symbol description. |
|
|
| [set](./puppeteer.protocol.runtime.propertydescriptor.set.md) | [RemoteObject](./puppeteer.protocol.runtime.remoteobject.md) | A function which serves as a setter for the property, or <code>undefined</code> if there is no setter (accessor descriptors only). |
|
|
| [symbol](./puppeteer.protocol.runtime.propertydescriptor.symbol.md) | [RemoteObject](./puppeteer.protocol.runtime.remoteobject.md) | Property symbol object, if the property is of the <code>symbol</code> type. |
|
|
| [value](./puppeteer.protocol.runtime.propertydescriptor.value.md) | [RemoteObject](./puppeteer.protocol.runtime.remoteobject.md) | The value associated with the property. |
|
|
| [wasThrown](./puppeteer.protocol.runtime.propertydescriptor.wasthrown.md) | boolean | True if the result was thrown during the evaluation. |
|
|
| [writable](./puppeteer.protocol.runtime.propertydescriptor.writable.md) | boolean | True if the value associated with the property may be changed (data descriptors only). |
|
|
|