@bytecodealliance/jco 0.13.1 → 0.13.2
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.
|
@@ -12,6 +12,9 @@ export interface StreamErrorClosed {
|
|
|
12
12
|
tag: 'closed',
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
+
export class Error {
|
|
16
|
+
}
|
|
17
|
+
|
|
15
18
|
export class InputStream {
|
|
16
19
|
read(len: bigint): Uint8Array;
|
|
17
20
|
blockingRead(len: bigint): Uint8Array;
|
|
@@ -23,6 +26,3 @@ export class OutputStream {
|
|
|
23
26
|
blockingWriteAndFlush(contents: Uint8Array): void;
|
|
24
27
|
blockingFlush(): void;
|
|
25
28
|
}
|
|
26
|
-
|
|
27
|
-
export class Error {
|
|
28
|
-
}
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
package/src/jco.js
CHANGED
|
@@ -11,7 +11,7 @@ program
|
|
|
11
11
|
.name('jco')
|
|
12
12
|
.description(c`{bold jco - WebAssembly JS Component Tools}\n JS Component Transpilation Bindgen & Wasm Tools for JS`)
|
|
13
13
|
.usage('<command> [options]')
|
|
14
|
-
.version('0.13.
|
|
14
|
+
.version('0.13.2');
|
|
15
15
|
|
|
16
16
|
function myParseInt(value) {
|
|
17
17
|
return parseInt(value, 10);
|