@re-shell/cli
Version:
Full-stack development platform uniting microservices and microfrontends. Build complete applications with .NET (ASP.NET Core Web API, Minimal API), Java (Spring Boot, Quarkus, Micronaut, Vert.x), Rust (Actix-Web, Warp, Rocket, Axum), Python (FastAPI, Dja
29 lines (28 loc) • 756 B
TypeScript
import { ProgressSpinner } from '../utils/spinner';
export interface BackupCommandOptions {
create?: boolean;
restore?: string;
list?: boolean;
delete?: string;
export?: string;
import?: string;
cleanup?: boolean;
stats?: boolean;
full?: boolean;
selective?: boolean;
name?: string;
description?: string;
tags?: string;
output?: string;
force?: boolean;
dryRun?: boolean;
keepCount?: number;
keepDays?: number;
preBackup?: boolean;
mergeStrategy?: 'replace' | 'merge' | 'skip-existing';
interactive?: boolean;
json?: boolean;
verbose?: boolean;
spinner?: ProgressSpinner;
}
export declare function manageBackups(options?: BackupCommandOptions): Promise<void>;