github.com/jfrog/frogbot@v1.1.1-0.20231221090046-821a26f50338/action/node_modules/simple-git/dist/src/lib/responses/CleanSummary.d.ts (about)

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