@lppedd/di-wise-neo - v0.23.1
    Preparing search index...

    Function TransientScoped

    • Class decorator that registers the decorated type with the Transient scope.

      Use this scope when you want a fresh instance every time the class is resolved.

      Example:

      @TransientScoped()
      class Wand {
      // ...
      }

      Type Parameters

      • This extends object

      Returns ClassDecorator<This>