Skip to main content

LinkError

class WebAssembly.LinkError
extends Error

The WebAssembly.LinkError object indicates an error during module instantiation (besides traps from the start function).

MDN

Constructors Jump to heading

new
Jump to headingLinkError(
message?: string,
options?: ErrorOptions,
)

Creates a new WebAssembly.LinkError object.

Back to top