Skip to content
18 changes: 18 additions & 0 deletions app/src/lib/app-state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,9 @@ export interface IAppState {
/** The width of the commit summary column in the history view */
readonly commitSummaryWidth: IConstrainedValue

/** The width of the branch list column in the commit graph view */
readonly commitGraphBranchListWidth: IConstrainedValue

/** The width of the files list in the stash view */
readonly stashedFilesWidth: IConstrainedValue

Expand Down Expand Up @@ -1014,6 +1017,21 @@ export interface ICompareState {

readonly allHistoryCommitSHAs: ReadonlyArray<string>

/** The branch refs used to build the current commit graph. */
readonly commitGraphRefs: ReadonlyArray<string>

/**
* The branch refs hidden from the commit graph for this repository, or null
* before they load.
*/
readonly commitGraphHiddenBranchRefs: ReadonlyArray<string> | null

/** The branch groups collapsed in the commit graph branch list. */
readonly commitGraphCollapsedBranchGroups: ReadonlyArray<string>

/** The SHAs of commits to render in the commit graph. */
readonly commitGraphCommitSHAs: ReadonlyArray<string>

readonly compareCommitSHAs: ReadonlyArray<string>

/** The SHAs of commits to highlight in the compare list */
Expand Down
Loading
Loading