aboutsummaryrefslogtreecommitdiff
path: root/node_modules/simple-git/src/lib/responses/PullSummary.d.ts
blob: c5bc9bc4ae5dad3378a95c659d40c38612475d46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { PullDetailFileChanges, PullDetailSummary, PullFailedResult, PullResult } from '../../../typings';
export declare class PullSummary implements PullResult {
    remoteMessages: {
        all: never[];
    };
    created: never[];
    deleted: string[];
    files: string[];
    deletions: PullDetailFileChanges;
    insertions: PullDetailFileChanges;
    summary: PullDetailSummary;
}
export declare class PullFailedSummary implements PullFailedResult {
    remote: string;
    hash: {
        local: string;
        remote: string;
    };
    branch: {
        local: string;
        remote: string;
    };
    message: string;
    toString(): string;
}