import * as fs from "fs-extra"; import { Ignore } from "ignore"; /** * Asynchronously zip a folder and return buffer * @param sourceDir base dir * @param notIncluded block list * @param cache zip cache file location */ export declare function zipFolderAsync(sourceDir: string, cache: string, notIncluded: Ignore): Promise; export declare function forEachFileAndDir(root: string, callback: (itemPath: string, stats: fs.Stats) => boolean | void, filter?: (itemPath: string) => boolean): Promise; //# sourceMappingURL=fileOperation.d.ts.map