PrivatePropertyDescriptor

@Serializable
data class PrivatePropertyDescriptor(val name: String, val value: Runtime.RemoteObject? = null, val get: Runtime.RemoteObject? = null, val set: Runtime.RemoteObject? = null)

Object private field descriptor.

Constructors

Link copied to clipboard
constructor(name: String, value: Runtime.RemoteObject? = null, get: Runtime.RemoteObject? = null, set: Runtime.RemoteObject? = null)

Properties

Link copied to clipboard

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

Link copied to clipboard

Private property name.

Link copied to clipboard

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

Link copied to clipboard

The value associated with the private property.