AngularTS
    Preparing search index...

    Interface WasmOptions

    Options for loading a WebAssembly module through $wasm.

    interface WasmOptions {
        raw?: boolean;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown

      Additional runtime-specific options.

    Index

    Properties

    Properties

    raw?: boolean

    When false, $wasm resolves to instance.exports. When true, $wasm resolves to the full instantiation result.