deno / 1.23.2 / ~ / webassembly.webassemblyinstantiatedsource.html /

WebAssembly.WebAssemblyInstantiatedSource

The value returned from WebAssembly.instantiate.

interface WebAssemblyInstantiatedSource {
instance : Instance;
module : Module;
}

Properties

instance : Instance
module : Module

A WebAssembly.Module object representing the compiled WebAssembly module. This Module can be instantiated again, or shared via postMessage().