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

15 lines (14 loc) 451 B
import { ProgressSpinner } from '../utils/spinner'; interface RemoveMicrofrontendOptions { force?: boolean; spinner?: ProgressSpinner; } /** * Removes a microfrontend from a Re-Shell project * * @param name - Name of the microfrontend to remove * @param options - Additional options for removal * @version 0.1.0 */ export declare function removeMicrofrontend(name: string, options: RemoveMicrofrontendOptions): Promise<void>; export {};