UNPKG

@junobuild/cli-tools

Version:

A collection of tools for Juno CLIs and Plugins.

6 lines (5 loc) 279 B
import type { PruneFilesFn, PruneFileStorage, PruneParams } from '../types/prune'; export declare const prune: ({ files: groupFiles, pruneFn, batchSize }: { files: PruneFileStorage[]; pruneFn: PruneFilesFn; } & Required<Pick<PruneParams, "batchSize">>) => Promise<void>;