github.com/jfrog/frogbot@v1.1.1-0.20231221090046-821a26f50338/action/node_modules/simple-git/dist/src/lib/responses/PullSummary.d.ts (about) 1 import { PullDetailFileChanges, PullDetailSummary, PullFailedResult, PullResult } from '../../../typings'; 2 export 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 } 13 export 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 }