@thi.ng/wasm-api 1.4.59 → 1.4.61
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/CHANGELOG.md +1 -1
- package/bridge.d.ts +2 -0
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
package/bridge.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import type { ILogger } from "@thi.ng/logger";
|
|
|
4
4
|
import { type BigIntArray, type BridgeEventType, type CoreAPI, type IWasmAPI, type IWasmMemoryAccess, type MemorySlice, type WasmExports } from "./api.js";
|
|
5
5
|
export declare const Panic: {
|
|
6
6
|
new (msg?: string | undefined): {
|
|
7
|
+
origMessage: string;
|
|
7
8
|
name: string;
|
|
8
9
|
message: string;
|
|
9
10
|
stack?: string | undefined;
|
|
@@ -15,6 +16,7 @@ export declare const Panic: {
|
|
|
15
16
|
};
|
|
16
17
|
export declare const OutOfMemoryError: {
|
|
17
18
|
new (msg?: string | undefined): {
|
|
19
|
+
origMessage: string;
|
|
18
20
|
name: string;
|
|
19
21
|
message: string;
|
|
20
22
|
stack?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/wasm-api",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.61",
|
|
4
4
|
"description": "Generic, modular, extensible API bridge and infrastructure for hybrid JS & WebAssembly projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -37,20 +37,20 @@
|
|
|
37
37
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@thi.ng/api": "^8.9.
|
|
41
|
-
"@thi.ng/arrays": "^2.8.
|
|
42
|
-
"@thi.ng/checks": "^3.5.
|
|
43
|
-
"@thi.ng/errors": "^2.
|
|
44
|
-
"@thi.ng/hex": "^2.3.
|
|
45
|
-
"@thi.ng/idgen": "^2.2.
|
|
46
|
-
"@thi.ng/logger": "^3.0.
|
|
40
|
+
"@thi.ng/api": "^8.9.30",
|
|
41
|
+
"@thi.ng/arrays": "^2.8.9",
|
|
42
|
+
"@thi.ng/checks": "^3.5.3",
|
|
43
|
+
"@thi.ng/errors": "^2.5.1",
|
|
44
|
+
"@thi.ng/hex": "^2.3.40",
|
|
45
|
+
"@thi.ng/idgen": "^2.2.35",
|
|
46
|
+
"@thi.ng/logger": "^3.0.6"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@microsoft/api-extractor": "^7.
|
|
50
|
-
"esbuild": "^0.20.
|
|
49
|
+
"@microsoft/api-extractor": "^7.42.3",
|
|
50
|
+
"esbuild": "^0.20.1",
|
|
51
51
|
"rimraf": "^5.0.5",
|
|
52
|
-
"typedoc": "^0.25.
|
|
53
|
-
"typescript": "^5.
|
|
52
|
+
"typedoc": "^0.25.12",
|
|
53
|
+
"typescript": "^5.4.2"
|
|
54
54
|
},
|
|
55
55
|
"keywords": [
|
|
56
56
|
"allocator",
|
|
@@ -116,5 +116,5 @@
|
|
|
116
116
|
"status": "alpha",
|
|
117
117
|
"year": 2022
|
|
118
118
|
},
|
|
119
|
-
"gitHead": "
|
|
119
|
+
"gitHead": "bc0f3cb07d6f1cab6dbdc5ff57428f5484e711bb\n"
|
|
120
120
|
}
|