@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
18 lines (17 loc) • 527 B
TypeScript
import { ProgressSpinner } from '../utils/spinner';
export interface WorkspaceConfigCommandOptions {
show?: boolean;
init?: boolean;
get?: string;
set?: string;
value?: string;
workspace?: string;
type?: 'app' | 'package' | 'lib' | 'tool';
framework?: string;
packageManager?: string;
interactive?: boolean;
json?: boolean;
verbose?: boolean;
spinner?: ProgressSpinner;
}
export declare function manageWorkspaceConfig(options?: WorkspaceConfigCommandOptions): Promise<void>;