aq-fe-framework 0.2.2 → 0.2.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.
@@ -0,0 +1,9 @@
1
+ declare const aqModuleIdEnum: {
2
+ readonly SAE: 1;
3
+ readonly EVA: 6;
4
+ readonly SRM: 8;
5
+ readonly EAQ: 10;
6
+ };
7
+ type AqModuleId = typeof aqModuleIdEnum[keyof typeof aqModuleIdEnum];
8
+
9
+ export { type AqModuleId as A, aqModuleIdEnum as a };