blob: 72db46636029f66f22f8cba7828315bc53cf026e (
plain)
1
2
3
4
5
6
7
8
|
/// <reference types="node" />
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>;
}
|