UNPKG

@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

19 lines (18 loc) 523 B
import { ProgressSpinner } from '../utils/spinner'; export interface WorkspaceHealthCommandOptions { check?: boolean; topology?: boolean; quick?: boolean; watch?: boolean; fix?: boolean; interactive?: boolean; file?: string; output?: string; category?: string; severity?: string; detailed?: boolean; json?: boolean; verbose?: boolean; spinner?: ProgressSpinner; } export declare function manageWorkspaceHealth(options?: WorkspaceHealthCommandOptions): Promise<void>;