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

    Interface DiffHunkLine

    One line of a DiffHunk: " " context, "-" removed, "+" added.

    interface DiffHunkLine {
        kind: " " | "-" | "+";
        text: string;
    }
    Index
    kind: " " | "-" | "+"
    text: string