@wasmgroundup/emit 0.2.6 → 0.2.7
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/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -82,4 +82,4 @@ declare const mut: {
|
|
|
82
82
|
declare function globaltype(t: any, m: any): any[];
|
|
83
83
|
declare function global(gt: any, e: any): any[];
|
|
84
84
|
declare function globalsec(globs: any): (number | BytecodeFragment)[];
|
|
85
|
-
export { blocktype, BytecodeFragment, code, codesec, export_, exportdesc, exportsec, f64, func, funcidx, funcsec, functype, global, globalsec, globaltype, i32, import_, importdesc, importsec, instr, locals, module, mut, name, section, typeidx, typesec, valtype, vec, };
|
|
85
|
+
export { blocktype, BytecodeFragment, code, codesec, export_, exportdesc, exportsec, f64, func, funcidx, funcsec, functype, global, globalsec, globaltype, i32, import_, importdesc, importsec, instr, locals, module, mut, name, section, typeidx, typesec, u32, valtype, vec, };
|
package/dist/index.js
CHANGED
|
@@ -207,4 +207,4 @@ function global(gt, e) {
|
|
|
207
207
|
function globalsec(globs) {
|
|
208
208
|
return section(SECTION_ID_GLOBAL, vec(globs));
|
|
209
209
|
}
|
|
210
|
-
export { blocktype, code, codesec, export_, exportdesc, exportsec, f64, func, funcidx, funcsec, functype, global, globalsec, globaltype, i32, import_, importdesc, importsec, instr, locals, module, mut, name, section, typeidx, typesec, valtype, vec, };
|
|
210
|
+
export { blocktype, code, codesec, export_, exportdesc, exportsec, f64, func, funcidx, funcsec, functype, global, globalsec, globaltype, i32, import_, importdesc, importsec, instr, locals, module, mut, name, section, typeidx, typesec, u32, valtype, vec, };
|
package/index.ts
CHANGED