blob: d49ef04a1d3b4340908a97c683a8cd4bbb876582 (
plain)
1
2
3
4
5
6
7
8
9
|
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;
|