@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
12 lines (11 loc) • 308 B
TypeScript
/**
* List available backend templates command
*/
interface ListTemplatesOptions {
language?: string;
framework?: string;
verbose?: boolean;
stats?: boolean;
}
export declare function listTemplatesCommand(options?: ListTemplatesOptions): Promise<void>;
export default listTemplatesCommand;