Options
All
  • Public
  • Public/Protected
  • All
Menu
     

Interface PropDesc

A Property Descriptor. A Property Descriptor.

Hierarchy

  • PropDesc

Index

Properties

Optional value

value: any

The value associated with the property. Can be any valid JavaScript value (number, object, function, etc).

Optional get

get: PropGet

An optional callback that acquires a Getter Property.

Optional set

set: PropSet

An optional callback that assign a Setter Property

enumerable

enumerable: true

true if and only if this property shows up during enumeration of the properties on the corresponding object.

writable

writable: false

true if and only if the value associated with the property may be changed with an assignment operator.

configurable

configurable: false

true if and only if the type of this property descriptor may be changed or deleted from the corresponding object.