UNPKG

662 BTypeScriptView Raw
1import { PullDetailFileChanges, PullDetailSummary, PullFailedResult, PullResult } from '../../../typings';
2export declare class PullSummary implements PullResult {
3 remoteMessages: {
4 all: never[];
5 };
6 created: never[];
7 deleted: string[];
8 files: string[];
9 deletions: PullDetailFileChanges;
10 insertions: PullDetailFileChanges;
11 summary: PullDetailSummary;
12}
13export declare class PullFailedSummary implements PullFailedResult {
14 remote: string;
15 hash: {
16 local: string;
17 remote: string;
18 };
19 branch: {
20 local: string;
21 remote: string;
22 };
23 message: string;
24 toString(): string;
25}