@teqfw/di 1.1.1 → 1.1.3
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/CHANGELOG.md +9 -0
- package/package.json +1 -1
- package/types.d.ts +23 -19
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.1.3
|
|
4
|
+
|
|
5
|
+
- Added global type declarations to `types.d.ts` to match the type map architecture rules.
|
|
6
|
+
|
|
7
|
+
## 1.1.2
|
|
8
|
+
|
|
9
|
+
- Moved architecture diagrams into `ctx/img/` and updated the context map accordingly.
|
|
10
|
+
- Clarified type map rules to require global namespace declarations for IDE type resolution.
|
|
11
|
+
|
|
3
12
|
## 1.1.1
|
|
4
13
|
|
|
5
14
|
- Added missing published files (`CHANGELOG.md`, `teqfw.json`, `types.d.ts`) and declared `types.d.ts` in `package.json`.
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -1,19 +1,23 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
1
|
+
declare global {
|
|
2
|
+
type TeqFw_Di_Api_Container_Parser = import("./src/Api/Container/Parser.js").default;
|
|
3
|
+
type TeqFw_Di_Api_Container_Parser_Chunk = import("./src/Api/Container/Parser/Chunk.js").default;
|
|
4
|
+
type TeqFw_Di_Api_Container_PostProcessor = import("./src/Api/Container/PostProcessor.js").default;
|
|
5
|
+
type TeqFw_Di_Api_Container_PostProcessor_Chunk = import("./src/Api/Container/PostProcessor/Chunk.js").default;
|
|
6
|
+
type TeqFw_Di_Api_Container_PreProcessor = import("./src/Api/Container/PreProcessor.js").default;
|
|
7
|
+
type TeqFw_Di_Api_Container_PreProcessor_Chunk = import("./src/Api/Container/PreProcessor/Chunk.js").default;
|
|
8
|
+
type TeqFw_Di_Api_Container_Resolver = import("./src/Api/Container/Resolver.js").default;
|
|
9
|
+
type TeqFw_Di_Container = import("./src/Container.js").default;
|
|
10
|
+
type TeqFw_Di_Container_A_Composer = import("./src/Container/A/Composer.js").default;
|
|
11
|
+
type TeqFw_Di_Container_A_Composer_A_SpecParser = import("./src/Container/A/Composer/A/SpecParser.js").default;
|
|
12
|
+
type TeqFw_Di_Container_A_Parser_Chunk_Def = import("./src/Container/A/Parser/Chunk/Def.js").default;
|
|
13
|
+
type TeqFw_Di_Container_A_Parser_Chunk_V02X = import("./src/Container/A/Parser/Chunk/V02X.js").default;
|
|
14
|
+
type TeqFw_Di_Container_Parser = import("./src/Container/Parser.js").default;
|
|
15
|
+
type TeqFw_Di_Container_PostProcessor = import("./src/Container/PostProcessor.js").default;
|
|
16
|
+
type TeqFw_Di_Container_PreProcessor = import("./src/Container/PreProcessor.js").default;
|
|
17
|
+
type TeqFw_Di_Container_Resolver = import("./src/Container/Resolver.js").default;
|
|
18
|
+
type TeqFw_Di_Defs = import("./src/Defs.js").default;
|
|
19
|
+
type TeqFw_Di_DepId = import("./src/DepId.js").default;
|
|
20
|
+
type TeqFw_Di_Pre_Replace = import("./src/Pre/Replace.js").default;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export {};
|