Skip to content

Commit

Permalink
fix error automatic type generation
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanmachuca committed Oct 21, 2024
1 parent 3399838 commit 72b82d8
Show file tree
Hide file tree
Showing 9 changed files with 1,447 additions and 6 deletions.
2 changes: 1 addition & 1 deletion browser/QCObjects.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

713 changes: 713 additions & 0 deletions browser/chunks/chunk-TBLBK5VV.js

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions browser/chunks/chunk-TBLBK5VV.js.map

Large diffs are not rendered by default.

713 changes: 713 additions & 0 deletions browser/chunks/chunk-ZYLXOA35.js

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions browser/chunks/chunk-ZYLXOA35.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion browser/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/QCObjects.js
Original file line number Diff line number Diff line change
Expand Up @@ -4865,4 +4865,4 @@
? window
: typeof global !== "undefined"
? global
: {})) : ((typeof global === "object") ? (global) : ((typeof window === "object") ? (window) : ({}))));
: object)) : ((typeof global === "object") ? (global) : ((typeof window === "object") ? (window) : (object))));
5 changes: 3 additions & 2 deletions src/QCObjects.js
Original file line number Diff line number Diff line change
Expand Up @@ -5231,6 +5231,7 @@
}
})(isBrowser);
}

}).call(null, (typeof module === "object" && typeof module.exports === "object") ? (
module.exports = (typeof globalThis !== "undefined"
? globalThis
Expand All @@ -5240,7 +5241,7 @@
? window
: typeof global !== "undefined"
? global
: {})
: object)
) : ((typeof global === "object") ? (global) : (
(typeof window === "object") ? (window) : ({})
(typeof window === "object") ? (window) : (object)
)));
2 changes: 1 addition & 1 deletion src/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
declare module "QCObjects" {
const _exports: {};
const _exports: any;

Check warning on line 2 in src/index.d.ts

View workflow job for this annotation

GitHub Actions / build

Unexpected any. Specify a different type
export = _exports;
}
declare module "index" {
Expand Down

0 comments on commit 72b82d8

Please sign in to comment.