UNPKG

simple-git

Version:

Simple GIT interface for node.js

7 lines (6 loc) 402 B
import { PullDetail, PullResult } from '../../../typings'; import { PullFailedSummary } from '../responses/PullSummary'; import { TaskParser } from '../types'; export declare const parsePullDetail: TaskParser<string, PullDetail>; export declare const parsePullResult: TaskParser<string, PullResult>; export declare function parsePullErrorResult(stdOut: string, stdErr: string): "" | PullFailedSummary;