import { WebAssembly } from "https://deno.land/x/deno@v2.0.4/cli/tsc/dts/lib.deno.shared_globals.d.ts";
const { Global } = WebAssembly;
A WebAssembly.Global
object represents a global variable instance, accessible from
both JavaScript and importable/exportable across one or more WebAssembly.Module
instances. This allows dynamic linking of multiple modules.
Constructors
new
Global(descriptor: GlobalDescriptor, v?: any)Creates a new Global
object.