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

17 lines (16 loc) 724 B
import { Command } from 'commander'; export interface ChangeImpactCommandOptions { files?: string[]; output?: string; format?: 'text' | 'json' | 'mermaid'; verbose?: boolean; maxDepth?: number; includeTests?: boolean; includeDevDeps?: boolean; visualization?: boolean; workspace?: string; } export declare function manageChangeImpact(options?: ChangeImpactCommandOptions): Promise<void>; export declare function analyzeWorkspaceImpact(workspaceName: string, options?: ChangeImpactCommandOptions): Promise<void>; export declare function showDependencyGraph(options?: ChangeImpactCommandOptions): Promise<void>; export declare function registerChangeImpactCommands(program: Command): void;