@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.
@@ -0,0 +1,7 @@
1
+ import * as ContractTypes from './ContractTypes';
2
+ import * as InformalNodeTypes from './InformalNodeTypes';
3
+ declare const FTypes: {
4
+ ContractTypes: typeof ContractTypes;
5
+ InformalNodeTypes: typeof InformalNodeTypes;
6
+ };
7
+ export default FTypes;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@freelog/tools-lib",
3
- "version": "0.1.74",
3
+ "version": "0.1.75",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
package/src/index.ts CHANGED
@@ -1,7 +1,9 @@
1
- import FUtil from './utils';
2
- import FServiceAPI from './service-API';
3
-
4
- export {
5
- FUtil,
6
- FServiceAPI,
7
- };
1
+ import FUtil from './utils';
2
+ import FServiceAPI from './service-API';
3
+ import FTypes from './types';
4
+
5
+ export {
6
+ FUtil,
7
+ FServiceAPI,
8
+ FTypes,
9
+ };
File without changes
@@ -0,0 +1,10 @@
1
+ import * as ContractTypes from './ContractTypes';
2
+ import * as InformalNodeTypes from './InformalNodeTypes';
3
+
4
+
5
+ const FTypes = {
6
+ ContractTypes,
7
+ InformalNodeTypes,
8
+ };
9
+
10
+ export default FTypes;