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

18 lines (17 loc) 479 B
import { ProgressSpinner } from '../utils/spinner'; export interface TemplateCommandOptions { list?: boolean; create?: boolean; delete?: boolean; apply?: boolean; show?: boolean; template?: string; name?: string; output?: string; variables?: string; interactive?: boolean; json?: boolean; verbose?: boolean; spinner?: ProgressSpinner; } export declare function manageTemplates(options?: TemplateCommandOptions): Promise<void>;