Describes the target provided to class accessor field decorators.
accessor
The this type to which the target applies.
this
The property type for the class accessor field.
Invokes the getter that was defined prior to decorator application.
let value = target.get.call(instance); Copy
let value = target.get.call(instance);
Invokes the setter that was defined prior to decorator application.
target.set.call(instance, value); Copy
target.set.call(instance, value);
Describes the target provided to class
accessor
field decorators.