WebWasmWebAssembly.MemoryDescriptorinterface WebAssembly.MemoryDescriptorThe MemoryDescriptor describes the options you can pass to new WebAssembly.Memory(). Properties ##initial: number The initial size of the memory, in units of WebAssembly pages (64KB each). #maximum: number optionalThe maximum size the memory is allowed to grow to, in units of WebAssembly pages. #shared: boolean optionalWhether the memory is shared between agents (backed by a SharedArrayBuffer). Defaults to false.
interface WebAssembly.MemoryDescriptorThe MemoryDescriptor describes the options you can pass to new WebAssembly.Memory(). Properties ##initial: number The initial size of the memory, in units of WebAssembly pages (64KB each). #maximum: number optionalThe maximum size the memory is allowed to grow to, in units of WebAssembly pages. #shared: boolean optionalWhether the memory is shared between agents (backed by a SharedArrayBuffer). Defaults to false.