UNPKG

@capgo/cli

Version:

A CLI to upload to capgo servers

10 lines (9 loc) 365 B
import type { BundleCleanupOptions } from '../schemas/bundle'; export declare function cleanupBundleInternal(appId: string, options: BundleCleanupOptions, silent?: boolean): Promise<{ removed: number; kept: number; }>; export declare function cleanupBundle(appId: string, options: BundleCleanupOptions): Promise<{ removed: number; kept: number; }>;