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) 560 B
import { ProgressSpinner } from '../utils/spinner'; interface AddMicrofrontendOptions { team?: string; org?: string; description?: string; template?: string; route?: string; port?: string; spinner?: ProgressSpinner; } /** * Adds a new microfrontend to an existing Re-Shell project * * @param name - Name of the microfrontend * @param options - Additional options for microfrontend creation * @version 0.1.0 */ export declare function addMicrofrontend(name: string, options: AddMicrofrontendOptions): Promise<void>; export {};