assemblerjs 0.7.0 → 0.7.1

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
@@ -103,7 +103,7 @@ declare type ArrayLengthMutationKeys = 'splice' | 'push' | 'pop' | 'shift' | 'un
103
103
  * @param { AssemblageDefinition } definition Definition of the assemblage that provides injections, etc.
104
104
  * @returns { ClassDecorator } The decorated class.
105
105
  */
106
- export declare const Assemblage: <T>(definition?: AssemblageDefinition) => (target: Concrete<T>) => Concrete<T>;
106
+ export declare const Assemblage: <T>(definition?: AssemblageDefinition) => ClassDecorator;
107
107
 
108
108
  declare interface AssemblageDefinition {
109
109
  singleton?: false;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "assemblerjs",
3
3
  "description": "A general purpose and zero-dependency Dependency Injection library for node and browser.",
4
- "version": "0.7.0",
4
+ "version": "0.7.1",
5
5
  "author": "Benoît LAHOZ <info@benoitlahoz.io>",
6
6
  "bugs": "https://github.com/benoitlahoz/assemblerjs/issues",
7
7
  "devDependencies": {