interface State {
    groups: ScmResourceGroup[];
    mergeChanges: GitFileChange[];
    stagedChanges: GitFileChange[];
    status?: WorkingDirectoryStatus;
    unstagedChanges: GitFileChange[];
}

Properties

groups: ScmResourceGroup[]
mergeChanges: GitFileChange[]
stagedChanges: GitFileChange[]
unstagedChanges: GitFileChange[]