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

20 lines (19 loc) 568 B
import { ProgressSpinner } from '../utils/spinner'; export interface WorkspaceDefinitionCommandOptions { init?: boolean; validate?: boolean; autoDetect?: boolean; structure?: boolean; fix?: boolean; interactive?: boolean; file?: string; output?: string; strict?: boolean; ignoreWarnings?: boolean; merge?: boolean; dryRun?: boolean; json?: boolean; verbose?: boolean; spinner?: ProgressSpinner; } export declare function manageWorkspaceDefinition(options?: WorkspaceDefinitionCommandOptions): Promise<void>;