Type Alias GenericClassDecorator<T>

GenericClassDecorator: (target: T) => void

Represents a decorator that can be applied to a class or constructor-like target.

Type Parameters

  • T

    The type of the target that the decorator can be applied to.

Type declaration

    • (target: T): void
    • Parameters

      • target: T

        The target to which the decorator is applied.

      Returns void