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.
- package/VERSION +1 -1
- package/build/QCObjects.js +0 -1
- package/build/index.cjs +35 -5
- package/build/index.mjs +1 -1
- package/build-esbuild.js +1 -1
- package/package.json +1 -1
- package/public/browser/QCObjects.js +12 -14
- package/public/browser/QCObjects.js.map +3 -3
- package/public/cjs/QCObjects.cjs +0 -2
- package/public/cjs/QCObjects.cjs.map +2 -2
- package/public/esm/QCObjects.mjs +0 -2
- package/public/esm/QCObjects.mjs.map +2 -2
- package/public/types/index.d.ts +0 -2
- package/src/QCObjects.ts +0 -1
- package/src/index.cts +1 -1
- package/src/index.mts +1 -1
package/public/types/index.d.ts
CHANGED
|
@@ -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
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;
|