aboutsummaryrefslogtreecommitdiff
path: root/node_modules/simple-git/src/lib/utils/task-parser.d.ts
blob: 5734495eda2e87a456fd3c37045f586a4fd51d52 (plain)
1
2
3
4
5
import { TaskParser, TaskResponseFormat } from '../types';
import { GitOutputStreams } from './git-output-streams';
import { LineParser } from './line-parser';
export declare function callTaskParser<INPUT extends TaskResponseFormat, RESPONSE>(parser: TaskParser<INPUT, RESPONSE>, streams: GitOutputStreams<INPUT>): RESPONSE;
export declare function parseStringResponse<T>(result: T, parsers: LineParser<T>[], ...texts: string[]): T;