gespenst API - v0.1.0
    Preparing search index...

    Interface WasmerInitializationOptions

    Custom initialization values forwarded to @wasmer/sdk. The first initialization wins.

    interface WasmerInitializationOptions {
        log?: string;
        module?:
            | RequestInfo
            | URL
            | Response
            | BufferSource
            | Module
            | Promise<(RequestInfo | URL | Response | BufferSource | Module)>;
        registryUrl?: string;
        sdkUrl?: string | URL;
        token?: string;
        workerUrl?: string | URL;
    }
    Index
    log?: string

    Optional Wasmer SDK log filter.

    module?:
        | RequestInfo
        | URL
        | Response
        | BufferSource
        | Module
        | Promise<(RequestInfo | URL | Response | BufferSource | Module)>

    Custom Wasmer SDK WebAssembly source.

    registryUrl?: string

    Wasmer Registry GraphQL endpoint.

    sdkUrl?: string | URL

    URL from which Wasmer workers import the SDK module.

    token?: string

    Optional Wasmer Registry access token.

    workerUrl?: string | URL

    URL of the worker module used by the Wasmer thread pool.