wasm-posix-host
    Preparing search index...

    Interface VfsImageOptions

    Options for saving a VFS image.

    interface VfsImageOptions {
        materializeAll?: boolean;
        metadata?: VfsImageMetadata | null;
    }
    Index

    Properties

    materializeAll?: boolean

    If true, fetch and write all lazy file contents before saving. The resulting image is self-contained with no external URL dependencies. If false (default), lazy file metadata is preserved as-is.

    metadata?: VfsImageMetadata | null

    Optional image-level metadata. undefined preserves any metadata loaded from the source image; null clears it.