@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
24 lines (23 loc) • 719 B
TypeScript
import { ProgressSpinner } from '../utils/spinner';
export interface WorkspaceConflictCommandOptions {
detect?: boolean;
resolve?: boolean;
preview?: boolean;
autoResolve?: boolean;
interactive?: boolean;
includeWarnings?: boolean;
checkDependencies?: boolean;
checkPorts?: boolean;
checkPaths?: boolean;
checkTypes?: boolean;
conflictId?: string;
resolutionId?: string;
force?: boolean;
file?: string;
workspaceFile?: string;
json?: boolean;
verbose?: boolean;
groupBy?: 'type' | 'severity' | 'workspace';
spinner?: ProgressSpinner;
}
export declare function manageWorkspaceConflict(options?: WorkspaceConflictCommandOptions): Promise<void>;