@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/cjs/index.js CHANGED
@@ -453,7 +453,6 @@ function createType(debugName, provider, options) {
453
453
  type.__type = undefined;
454
454
  type.toString = ()=>name;
455
455
  if (provider) {
456
- type.type = type;
457
456
  type.provider = provider;
458
457
  type.options = options;
459
458
  }