@stompbox/tape-delay 1.0.12 → 1.0.13

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -157,5 +157,5 @@ export declare class TapeDelay<T extends Entries> {
157
157
  private container;
158
158
  instance: <E extends keyof T>(entryName: E) => EntryType<T[E]>;
159
159
  }
160
- type Keys<T> = T extends TapeDelay<infer GG> ? keyof GG : never;
160
+ type Keys<T> = T extends TapeDelay<infer ContainerEntries> ? keyof ContainerEntries : never;
161
161
  export declare const inject: <ContainerType>(entryKey: Keys<ContainerType>) => MethodDecorator & ParameterDecorator & PropertyDecorator;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stompbox/tape-delay",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "license": "MIT",
5
5
  "description": "Plug-and-play DI based on Inversify",
6
6
  "repository": {