godprotocol 1.0.798 → 1.0.7991

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "godprotocol",
3
- "version": "1.0.798",
3
+ "version": "1.0.7991",
4
4
  "description": "A data mediator.",
5
5
  "main": "Index.js",
6
6
  "types": "types/index.d.ts",
package/tsconfig.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "compilerOptions": {
3
+ "baseUrl": ".",
4
+ "paths": {
5
+ "@types/*": ["types/*"]
6
+ }
7
+ }
8
+ }
package/types/Oracle.d.ts CHANGED
@@ -1,7 +1,7 @@
1
- import fs from "fs";
1
+ // import fs from "fs";
2
2
 
3
3
  declare class Oracle {
4
- fs: typeof fs;
4
+ // fs: typeof fs;
5
5
  mgr: any;
6
6
  datapaths: { [key: string]: { type: string; obj: any } };
7
7
 
package/types/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  export { default as Account } from "./Account";
2
2
  export { default as Virtual_machine } from "./Virtual_machine";
3
3
  export { default as Filesystem } from "./Filesystem";
4
- export { default as Loader_sequence } from "./Loader_sequence";
4
+ export { default as Loader_sequence } from "../Loader_sequence/main";