wasm-posix-host
    Preparing search index...

    Interface HomebrewLazyLayerEntry

    interface HomebrewLazyLayerEntry {
        inode_group?: string;
        materialization?:
            | "archive"
            | "archive-homebrew-relocate"
            | "archive-copy"
            | "archive-copy-mode"
            | "descriptor";
        mode: number;
        ownership: "layer"
        | "shared-base-directory"
        | "mergeable-directory";
        path: string;
        size: number;
        source_path: string;
        target?: string;
        type: "symlink" | "file" | "directory" | "hardlink";
    }
    Index

    Properties

    inode_group?: string

    Stable identity shared by one regular file and all of its hard links.

    materialization?:
        | "archive"
        | "archive-homebrew-relocate"
        | "archive-copy"
        | "archive-copy-mode"
        | "descriptor"

    Absent only on the already-published ZIP-v1 inventory contract. Original-bottle trees distinguish decoded members from structural paths created directly from the signed descriptor.

    mode: number
    ownership: "layer" | "shared-base-directory" | "mergeable-directory"
    path: string

    Guest path relative to /.

    size: number

    Logical guest size. Hard links repeat their canonical file's size.

    source_path: string

    Exact member name in the immutable deferred-tree payload.

    target?: string

    Symlink text, or the canonical guest path for a hard link.

    type: "symlink" | "file" | "directory" | "hardlink"