ts-ioc-container 35.2.0 → 35.2.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ts-ioc-container",
|
|
3
|
-
"version": "35.2.
|
|
3
|
+
"version": "35.2.1",
|
|
4
4
|
"description": "Typescript IoC container",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"ts-node": "^10.9.1",
|
|
60
60
|
"typescript": "5.4.3"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "12bad3b259ed33df6a226ab6ccb70283b1dccbd0"
|
|
63
63
|
}
|
|
@@ -14,4 +14,4 @@ export declare const key: (...keys: DependencyKey[]) => MapFn<IRegistration>;
|
|
|
14
14
|
export declare const redirectFrom: (...keys: DependencyKey[]) => MapFn<IRegistration>;
|
|
15
15
|
export declare const scope: (predicate: ScopePredicate) => MapFn<IRegistration>;
|
|
16
16
|
export declare const getTransformers: (Target: constructor<unknown>) => MapFn<IRegistration<any>>[];
|
|
17
|
-
export declare const register: (...mappers: (MapFn<IRegistration> | DepKey<
|
|
17
|
+
export declare const register: (...mappers: (MapFn<IRegistration> | DepKey<any>)[]) => ClassDecorator;
|