UNPKG

@junobuild/cli-tools

Version:

A collection of tools for Juno CLIs and Plugins.

10 lines (9 loc) 393 B
import type { ListAssets } from '../types/assets'; import type { DeployConfig } from '../types/config'; import type { PreparePruneOptions, PruneFileStorage } from '../types/prune'; export declare const preparePrune: ({ config, listAssets, assertSourceDirExists }: { config: DeployConfig; listAssets: ListAssets; } & PreparePruneOptions) => Promise<{ files: PruneFileStorage[]; }>;