如何在TypeScript中获取wasm文件

时间:2018-09-29 17:10:18

标签: typescript

我刚刚读过this,有关使用JavaScript提取WebAssembly文件

WebAssembly.instantiateStreaming(fetch('simple.wasm'), importObject)
.then(obj => obj.instance.exports.exported_func());

fetch('simple.wasm').then(response =>
  response.arrayBuffer()
).then(bytes =>
  WebAssembly.instantiate(bytes, importObject)
).then(results => {
  results.instance.exports.exported_func();
});

TypeScript中有等效的方法吗

0 个答案:

没有答案