Options
All
  • Public
  • Public/Protected
  • All
Menu

Object property descriptor.

Hierarchy

  • PropertyDescriptor

Index

Properties

configurable

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

enumerable: boolean

True if this property shows up during enumeration of the properties on the corresponding object.

Optional get

A function which serves as a getter for the property, or undefined if there is no getter (accessor descriptors only).

Optional isOwn

isOwn: boolean

True if the property is owned for the object.

name

name: string

Property name or symbol description.

Optional set

A function which serves as a setter for the property, or undefined if there is no setter (accessor descriptors only).

Optional symbol

symbol: RemoteObject

Property symbol object, if the property is of the symbol type.

Optional value

The value associated with the property.

Optional wasThrown

wasThrown: boolean

True if the result was thrown during the evaluation.

Optional writable

writable: boolean

True if the value associated with the property may be changed (data descriptors only).

Generated using TypeDoc