aboutsummaryrefslogtreecommitdiff
path: root/node_modules/simple-git/src/lib/responses/StatusSummary.d.ts
blob: d70ade52e59815f169376c635b58795a845d73a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { StatusResult } from '../../../typings';
export declare class StatusSummary implements StatusResult {
    not_added: never[];
    conflicted: never[];
    created: never[];
    deleted: never[];
    ignored: undefined;
    modified: never[];
    renamed: never[];
    files: never[];
    staged: never[];
    ahead: number;
    behind: number;
    current: null;
    tracking: null;
    detached: boolean;
    isClean(): boolean;
}
export declare const parseStatusSummary: (text: string) => StatusResult;