Configuration options for auto-initialization

interface AutoInitOptions {
    hardwareConcurrency?: number;
    loggingLevel?: LoggingLevel;
    wasmBasePath?: string;
}

Properties

hardwareConcurrency?: number

Hardware concurrency for WASM threads

navigator.hardwareConcurrency
loggingLevel?: LoggingLevel

Logging level for WASM initialization

'Info'
wasmBasePath?: string

Base path where WASM files are served from. This should be the URL path (not filesystem path) where you've copied the WASM files from the SDK.

'/' (root of your web app)
'/tlsn-wasm/'
'/assets/wasm/'