Interface WasmAssetUrls

URLs of the WebAssembly assets required to run the rendering engine: the WebAssembly binary and its JS glue file. Accepted by the lensCoreOverrideUrls configuration option and produced by createBootstrapURLs.

interface WasmAssetUrls {
    js: string;
    wasm: string;
}

Properties

Properties

js: string
wasm: string