Object property descriptor.
Properties Jump to heading
Jump to headingname: string
Property name or symbol description.
Jump to headingvalue: RemoteObject | undefined
The value associated with the property.
Jump to headingwritable: boolean | undefined
True if the value associated with the property may be changed (data descriptors only).
Jump to headingget: RemoteObject | undefined
A function which serves as a getter for the property, or undefined
if there is no getter (accessor descriptors only).
Jump to headingset: RemoteObject | undefined
A function which serves as a setter for the property, or undefined
if there is no setter (accessor descriptors only).
Jump to headingconfigurable: boolean
True if the type of this property descriptor may be changed and if the property may be deleted from the corresponding object.
Jump to headingenumerable: boolean
True if this property shows up during enumeration of the properties on the corresponding object.
Jump to headingwasThrown: boolean | undefined
True if the result was thrown during the evaluation.
Jump to headingisOwn: boolean | undefined
True if the property is owned for the object.
Jump to headingsymbol: RemoteObject | undefined
Property symbol object, if the property is of the symbol
type.