Object property descriptor.
interface
inspector.Runtime.PropertyDescriptor
interface PropertyDescriptor
- configurable: boolean
True if the type of this property descriptor may be changed and if the property may be deleted from the corresponding object.
- enumerable: boolean
True if this property shows up during enumeration of the properties on the corresponding object.
- get?: RemoteObject
A function which serves as a getter for the property, or <code>undefined</code> if there is no getter (accessor descriptors only).
- set?: RemoteObject
A function which serves as a setter for the property, or <code>undefined</code> if there is no setter (accessor descriptors only).
- writable?: boolean
True if the value associated with the property may be changed (data descriptors only).