UNPKG

330 BTypeScriptView Raw
1import { CleanSummary } from '../../../typings';
2export declare class CleanResponse implements CleanSummary {
3 readonly dryRun: boolean;
4 paths: string[];
5 files: string[];
6 folders: string[];
7 constructor(dryRun: boolean);
8}
9export declare function cleanSummaryParser(dryRun: boolean, text: string): CleanSummary;