The type on which the class element will be defined. For a static class element, this will be the type of the constructor. For a non-static class element, this will be the type of the instance.
The type of decorated class field.
Readonly
accessAn object that can be used to access the current value of the class element at runtime.
Readonly
kindThe kind of class element that was decorated.
Readonly
nameThe name of the decorated class element.
Readonly
privateA value indicating whether the class element has a private name.
Readonly
staticA value indicating whether the class element is a static (true
) or instance (false
) element.
Adds a callback to be invoked either before static initializers are run (when
decorating a static
element), or before instance initializers are run (when
decorating a non-static
element).
Context provided to a class
accessor
field decorator.