SongGuess
    Preparing search index...

    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.

    MDN Reference

    interface Global<T extends ValueType = ValueType> {
        value: ValueTypeMap[T];
        valueOf(): ValueTypeMap[T];
    }

    Type Parameters

    Index

    Properties

    Methods

    Properties

    value: ValueTypeMap[T]

    Methods