@stompbox/tape-delay 1.0.7 → 1.0.9

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 +13 -0
  2. package/package.json +2 -1
package/dist/index.d.ts CHANGED
@@ -19,6 +19,19 @@ export declare const Scope: {
19
19
  Request: <T>(EntryClass: ClassEntry<T>) => EntryDescription<T>;
20
20
  ConstantValue: <T>(value: T) => ConstantValueEntry<T>;
21
21
  };
22
+ /**
23
+ * Tape Delay container.
24
+ *
25
+ * @example
26
+ * ```ts
27
+ * import { TapeDelay, injectable } from '@stompbox/tape-delay'
28
+ *
29
+ * @injectable()
30
+ * class A {}
31
+ *
32
+ * const container = new TapeDelay({ A })
33
+ * ```
34
+ */
22
35
  export declare class TapeDelay<T extends Entries> {
23
36
  private readonly entries;
24
37
  private readonly getEnvironment?;
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@stompbox/tape-delay",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
+ "license": "MIT",
4
5
  "description": "Plug-and-play DI based on Inversify",
5
6
  "repository": {
6
7
  "type": "git",