qcobjects 2.5.124-beta → 2.5.125-beta

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.
@@ -1052,8 +1052,6 @@ declare module "qcobjects" {
1052
1052
  export { _top as global } from "top";
1053
1053
  export { __make_global__ } from "make_global";
1054
1054
  export { get, set } from "top";
1055
- const _default: {};
1056
- export default _default;
1057
1055
  }
1058
1056
  declare module "index" {
1059
1057
  import * as QCObjects from "qcobjects";
package/src/QCObjects.ts CHANGED
@@ -100,4 +100,3 @@ export { __to_number } from "./mathFunctions";
100
100
  export {_top as global} from "./top";
101
101
  export {__make_global__} from "./make_global";
102
102
  export {get, set} from "./top";
103
- export default {};
package/src/index.cts CHANGED
@@ -1,2 +1,2 @@
1
- import QCObjects from "./qcobjects.js";
1
+ import * as QCObjects from "./qcobjects.js";
2
2
  module.exports = QCObjects;
package/src/index.mts CHANGED
@@ -1,2 +1,2 @@
1
- import QCObjects from "./qcobjects.js";
1
+ import * as QCObjects from "./qcobjects.js";
2
2
  export default QCObjects;