UNPKG

simple-git

Version:

Simple GIT interface for node.js

8 lines (7 loc) 258 B
import { TaskResponseFormat } from '../types'; export declare class GitOutputStreams<T extends TaskResponseFormat = Buffer> { readonly stdOut: T; readonly stdErr: T; constructor(stdOut: T, stdErr: T); asStrings(): GitOutputStreams<string>; }