@freelog/tools-lib 0.1.74 → 0.1.75
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/dist/index.d.ts +2 -1
- package/dist/tools-lib.cjs.development.js +18 -0
- package/dist/tools-lib.cjs.development.js.map +1 -1
- package/dist/tools-lib.cjs.production.min.js +1 -1
- package/dist/tools-lib.cjs.production.min.js.map +1 -1
- package/dist/tools-lib.esm.js +18 -1
- package/dist/tools-lib.esm.js.map +1 -1
- package/dist/types/{contractTypes.d.ts → ContractTypes.d.ts} +0 -0
- package/dist/types/index.d.ts +7 -0
- package/package.json +1 -1
- package/src/index.ts +9 -7
- package/src/types/{contractTypes.ts → ContractTypes.ts} +0 -0
- package/src/types/index.ts +10 -0
package/dist/index.d.ts
CHANGED
|
@@ -2795,6 +2795,24 @@ var FServiceAPI = {
|
|
|
2795
2795
|
Event: Event
|
|
2796
2796
|
};
|
|
2797
2797
|
|
|
2798
|
+
|
|
2799
|
+
|
|
2800
|
+
var ContractTypes = {
|
|
2801
|
+
__proto__: null
|
|
2802
|
+
};
|
|
2803
|
+
|
|
2804
|
+
|
|
2805
|
+
|
|
2806
|
+
var InformalNodeTypes = {
|
|
2807
|
+
__proto__: null
|
|
2808
|
+
};
|
|
2809
|
+
|
|
2810
|
+
var FTypes = {
|
|
2811
|
+
ContractTypes: ContractTypes,
|
|
2812
|
+
InformalNodeTypes: InformalNodeTypes
|
|
2813
|
+
};
|
|
2814
|
+
|
|
2798
2815
|
exports.FServiceAPI = FServiceAPI;
|
|
2816
|
+
exports.FTypes = FTypes;
|
|
2799
2817
|
exports.FUtil = FUtil;
|
|
2800
2818
|
//# sourceMappingURL=tools-lib.cjs.development.js.map
|