@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) • 502 B
TypeScript
import { ProgressSpinner } from '../utils/spinner';
export interface DevModeCommandOptions {
start?: boolean;
stop?: boolean;
status?: boolean;
restart?: boolean;
interactive?: boolean;
verbose?: boolean;
debounce?: number;
noValidation?: boolean;
noBackup?: boolean;
noRestore?: boolean;
excludeWorkspaces?: boolean;
json?: boolean;
spinner?: ProgressSpinner;
}
export declare function manageDevMode(options?: DevModeCommandOptions): Promise<void>;