@lppedd/di-wise-neo 0.26.1 → 0.26.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -75,10 +75,6 @@ interface Type<T> extends ParameterDecorator {
75
75
  * An injectable type `T` with a default {@link Provider} and optional default registration options.
76
76
  */
77
77
  interface ProviderType<T> extends Type<T> {
78
- /**
79
- * The underlying `Type<T>`.
80
- */
81
- readonly type: Type<T>;
82
78
  /**
83
79
  * The type's default provider.
84
80
  */
package/dist/es/index.mjs CHANGED
@@ -451,7 +451,6 @@ function createType(debugName, provider, options) {
451
451
  type.__type = undefined;
452
452
  type.toString = ()=>name;
453
453
  if (provider) {
454
- type.type = type;
455
454
  type.provider = provider;
456
455
  type.options = options;
457
456
  }