UNPKG

simple-git

Version:

Simple GIT interface for node.js

10 lines (9 loc) 330 B
import { CleanSummary } from '../../../typings'; export declare class CleanResponse implements CleanSummary { readonly dryRun: boolean; paths: string[]; files: string[]; folders: string[]; constructor(dryRun: boolean); } export declare function cleanSummaryParser(dryRun: boolean, text: string): CleanSummary;