aboutsummaryrefslogtreecommitdiff
path: root/node_modules/simple-git/src/lib/parsers/parse-merge.d.ts
blob: 42435fd15574e7a3ad429014c4b13605d0e67d20 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { MergeDetail, MergeResult } from '../../../typings';
import { TaskParser } from '../types';
/**
 * Parse the complete response from `git.merge`
 */
export declare const parseMergeResult: TaskParser<string, MergeResult>;
/**
 * Parse the merge specific detail (ie: not the content also available in the pull detail) from `git.mnerge`
 * @param stdOut
 */
export declare const parseMergeDetail: TaskParser<string, MergeDetail>;