UNPKG

@sap/generator-cap-project

Version:

Creates a new SAP Cloud Application Programming Model project.

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;