Interface FeatureDecorator<TF, TP, TR>

Implement a subapp feature decorator

The behavior of the decorator will be very specific to the internals of the feature it decorated.

interface FeatureDecorator<TF, TP, TR> {
    decorate(feature, params): TR;
}

Type Parameters

  • TF = unknown
  • TP = unknown
  • TR = void

Methods

Methods