repo2post - v0.1.1
    Preparing search index...

    Interface ChangeSet

    The collected change set between two refs.

    interface ChangeSet {
        commits: Commit[];
        deletions: number;
        diff?: ShapedDiff;
        files: FileChange[];
        from: string;
        insertions: number;
        to: string;
    }
    Index

    Properties

    commits: Commit[]
    deletions: number
    diff?: ShapedDiff

    The shaped patch for the range, when diff capture is enabled (the default). Undefined when disabled via includeDiff: false. Sensitive, generated, and binary files are skipped; per-file and total line caps apply.

    files: FileChange[]
    from: string

    The resolved "from" ref (exclusive). May be empty for the repo root.

    insertions: number

    Total insertions / deletions across the range.

    to: string

    The resolved "to" ref (inclusive).