@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
22 lines (21 loc) • 580 B
TypeScript
import { ProgressSpinner } from '../utils/spinner';
export interface EnvironmentCommandOptions {
list?: boolean;
active?: boolean;
set?: string;
create?: string;
delete?: string;
update?: string;
compare?: string[];
variables?: boolean;
build?: boolean;
deployment?: boolean;
generate?: string;
output?: string;
extends?: string;
interactive?: boolean;
json?: boolean;
verbose?: boolean;
spinner?: ProgressSpinner;
}
export declare function manageEnvironment(options?: EnvironmentCommandOptions): Promise<void>;