UNPKG

simple-git

Version:

Simple GIT interface for node.js

7 lines (6 loc) 429 B
import { LogResult } from '../../../typings'; import { LogFormat } from '../args/log-format'; export declare const START_BOUNDARY = "\u00F2\u00F2\u00F2\u00F2\u00F2\u00F2 "; export declare const COMMIT_BOUNDARY = " \u00F2\u00F2"; export declare const SPLITTER = " \u00F2 "; export declare function createListLogSummaryParser<T = any>(splitter?: string, fields?: string[], logFormat?: LogFormat): (stdOut: string) => LogResult<T>;