github.com/jfrog/frogbot@v1.1.1-0.20231221090046-821a26f50338/action/node_modules/simple-git/dist/src/lib/parsers/parse-merge.d.ts (about) 1 import { MergeDetail, MergeResult } from '../../../typings'; 2 import { TaskParser } from '../types'; 3 /** 4 * Parse the complete response from `git.merge` 5 */ 6 export declare const parseMergeResult: TaskParser<string, MergeResult>; 7 /** 8 * Parse the merge specific detail (ie: not the content also available in the pull detail) from `git.mnerge` 9 * @param stdOut 10 */ 11 export declare const parseMergeDetail: TaskParser<string, MergeDetail>;