SongGuess
    Preparing search index...

    A WebAssembly.Instance object is a stateful, executable instance of a WebAssembly.Module. Instance objects contain all the Exported WebAssembly functions that allow calling into WebAssembly code from JavaScript.

    MDN Reference

    interface Instance {
        exports: WebAssembly.Exports;
    }
    Index

    Properties

    Properties

    The exports read-only property of the WebAssembly.Instance object prototype returns an object containing as its members all the functions exported from the WebAssembly module instance, to allow them to be accessed and used by JavaScript.

    MDN Reference