+2
-2
| import 'reflect-metadata'; | ||
| export type Constructable<T = unknown> = new (...args: any[]) => T; | ||
| type AbstractConstructable<T = unknown> = abstract new (...args: unknown[]) => T; | ||
| type ServiceIdentifier<T = unknown> = Constructable<T> | AbstractConstructable<T>; | ||
| export type AbstractConstructable<T = unknown> = abstract new (...args: unknown[]) => T; | ||
| export type ServiceIdentifier<T = unknown> = Constructable<T> | AbstractConstructable<T>; | ||
| type Factory<T = unknown> = (...args: unknown[]) => T; | ||
@@ -6,0 +6,0 @@ interface Options<T> { |
+4
-4
| { | ||
| "name": "@n8n/di", | ||
| "version": "0.10.0", | ||
| "version": "0.11.0", | ||
| "main": "dist/di.js", | ||
@@ -9,4 +9,4 @@ "module": "src/di.ts", | ||
| "dist/**/*", | ||
| "LICENSE.md", | ||
| "LICENSE_EE.md" | ||
| "LICENSE_EE.md", | ||
| "LICENSE.md" | ||
| ], | ||
@@ -17,3 +17,3 @@ "dependencies": { | ||
| "devDependencies": { | ||
| "@n8n/typescript-config": "1.3.0" | ||
| "@n8n/typescript-config": "1.4.0" | ||
| }, | ||
@@ -20,0 +20,0 @@ "license": "SEE LICENSE IN LICENSE.md", |
Sorry, the diff of this file is not supported yet
49376
0.1%