@gmb/bitmark-parser - v7.2.0
    Preparing search index...

    Interface BitDiff

    The diff of one aligned (or unpaired) bit, as returned by diffBits.

    interface BitDiff {
        a: BitDiffRef | null;
        b: BitDiffRef | null;
        hunks: DiffHunk[];
        issues: { added: string[]; removed: string[] };
        ops: PatchEntry[];
        revert: PatchEntry[];
        status: "unchanged" | "changed" | "moved" | "removed" | "added";
        type: { a: string | null; b: string | null };
    }
    Index
    a: BitDiffRef | null
    b: BitDiffRef | null
    hunks: DiffHunk[]
    issues: { added: string[]; removed: string[] }

    Parser issue codes gained / lost.

    ops: PatchEntry[]

    Patch turning the A bit into the B bit (paths relative to the bit JSON).

    revert: PatchEntry[]

    Patch turning the B bit back into the A bit.

    status: "unchanged" | "changed" | "moved" | "removed" | "added"
    type: { a: string | null; b: string | null }