wasm-posix-host
    Preparing search index...

    Interface LazyTreeRegistrationEntry

    interface LazyTreeRegistrationEntry {
        inodeGroup?: string;
        materialization?:
            | "archive"
            | "archive-homebrew-relocate"
            | "archive-copy"
            | "archive-copy-mode"
            | "descriptor";
        mode: number;
        size: number;
        sourcePath: string;
        target?: string;
        type: "symlink"
        | "file"
        | "directory"
        | "hardlink";
        vfsPath: string;
    }
    Index

    Properties

    inodeGroup?: string

    Required on files and hardlinks; equal values share one inode.

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

    Explicit only for the original-bottle source-inventory contract.

    mode: number
    size: number

    Logical guest size; hard links repeat their canonical file's size.

    sourcePath: string

    Canonical member path interpreted by the selected decoder.

    target?: string

    Symlink text, or an absolute VFS target for a hard link.

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

    Absolute, canonical VFS path.