Interface ClassAccessorDecoratorResult<This, Value>

Describes the allowed return value from a class accessor field decorator.

Type Parameters

  • This

    The this type to which the target applies.

  • Value

    The property type for the class accessor field.

Hierarchy

  • ClassAccessorDecoratorResult

Methods

Methods

  • An optional replacement getter function. If not provided, the existing getter function is used instead.

    Parameters

    • this: This

    Returns Value

  • An optional initializer mutator that is invoked when the underlying field initializer is evaluated.

    Parameters

    • this: This
    • value: Value

      The incoming initializer value.

    Returns Value

    The replacement initializer value.

  • An optional replacement setter function. If not provided, the existing setter function is used instead.

    Parameters

    • this: This
    • value: Value

    Returns void