wasm-posix-host
    Preparing search index...

    Interface ComposeHomebrewRuntimeLayersOptions

    interface ComposeHomebrewRuntimeLayersOptions {
        arch: "wasm32" | "wasm64";
        archiveFetch?: (url: string) => Promise<Response>;
        baseImageBytes: Uint8Array;
        fetch?: (url: string) => Promise<Response>;
        kernelAbi: number;
        layers: readonly HomebrewRuntimeLayerReference[];
        maxByteLength?: number;
        onStagedFileSystemDiscarded?: (buffer: SharedArrayBuffer) => void;
    }
    Index

    Properties

    arch: "wasm32" | "wasm64"
    archiveFetch?: (url: string) => Promise<Response>

    Credential-free deferred-tree transport, including boot-prefetch trees.

    baseImageBytes: Uint8Array

    Exact immutable package output that owns the composition transaction.

    fetch?: (url: string) => Promise<Response>

    Credential-free descriptor transport.

    kernelAbi: number
    maxByteLength?: number

    Optional runtime growth ceiling for the newly restored composition FS.

    onStagedFileSystemDiscarded?: (buffer: SharedArrayBuffer) => void

    Observe a private staged filesystem that is abandoned before publication. Browser callers use this to register the SharedArrayBuffer for WebKit reclamation; the observer must not retain the buffer.