Interface ClassAccessorDecoratorTarget<This, Value>

Describes the target provided to class accessor field decorators.

Type Parameters

  • This

    The this type to which the target applies.

  • Value

    The property type for the class accessor field.

Hierarchy

  • ClassAccessorDecoratorTarget

Methods

Methods

  • Invokes the getter that was defined prior to decorator application.

    Parameters

    • this: This

    Returns Value

    Example

    let value = target.get.call(instance);
    
  • Invokes the setter that was defined prior to decorator application.

    Parameters

    • this: This
    • value: Value

    Returns void

    Example

    target.set.call(instance, value);