aboutsummaryrefslogtreecommitdiff
path: root/node_modules/simple-git/src/lib/responses/BranchSummary.d.ts
blob: 69cd69898f5c5a7d3d05692373d70acf4a97fdac (plain)
1
2
3
4
5
6
7
8
9
10
import { BranchSummary, BranchSummaryBranch } from '../../../typings';
export declare class BranchSummaryResult implements BranchSummary {
    all: string[];
    branches: {
        [p: string]: BranchSummaryBranch;
    };
    current: string;
    detached: boolean;
    push(current: boolean, detached: boolean, name: string, commit: string, label: string): void;
}