@asaidimu/utils-artifacts 8.1.3 → 8.1.4
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/index.d.mts +1 -1
- package/index.d.ts +1 -1
- package/package.json +2 -2
package/index.d.mts
CHANGED
|
@@ -614,7 +614,7 @@ type ArtifactTemplateMap<TState extends object, TRegistry extends Record<string,
|
|
|
614
614
|
* @template T The type that contains a factory property.
|
|
615
615
|
*/
|
|
616
616
|
type ArtifactValue<T> = T extends {
|
|
617
|
-
factory:
|
|
617
|
+
factory: ArtifactFactory<any, any, infer TArtifact, any>;
|
|
618
618
|
} ? TArtifact : never;
|
|
619
619
|
/**
|
|
620
620
|
* Infers the complete Artifact Registry type from a map of artifact configuration objects.
|
package/index.d.ts
CHANGED
|
@@ -614,7 +614,7 @@ type ArtifactTemplateMap<TState extends object, TRegistry extends Record<string,
|
|
|
614
614
|
* @template T The type that contains a factory property.
|
|
615
615
|
*/
|
|
616
616
|
type ArtifactValue<T> = T extends {
|
|
617
|
-
factory:
|
|
617
|
+
factory: ArtifactFactory<any, any, infer TArtifact, any>;
|
|
618
618
|
} ? TArtifact : never;
|
|
619
619
|
/**
|
|
620
620
|
* Infers the complete Artifact Registry type from a map of artifact configuration objects.
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@asaidimu/utils-artifacts",
|
|
3
|
-
"version": "8.1.
|
|
3
|
+
"version": "8.1.4",
|
|
4
4
|
"description": "Reactive artifact container.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "index.mjs",
|
|
7
7
|
"types": "index.d.ts",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@asaidimu/utils-events": "
|
|
9
|
+
"@asaidimu/utils-events": "1.1.0"
|
|
10
10
|
},
|
|
11
11
|
"keywords": [
|
|
12
12
|
"typescript",
|