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) 990 B
interface CommandCommandOptions { verbose?: boolean; json?: boolean; plugin?: string; category?: string; active?: boolean; conflicts?: boolean; usage?: boolean; } export declare function listPluginCommands(options?: CommandCommandOptions): Promise<void>; export declare function showCommandConflicts(options?: CommandCommandOptions): Promise<void>; export declare function resolveCommandConflicts(commandName: string, resolution: 'disable' | 'priority', options?: CommandCommandOptions): Promise<void>; export declare function showCommandStats(options?: CommandCommandOptions): Promise<void>; export declare function registerTestCommand(pluginName: string, commandDefinition: string, options?: CommandCommandOptions): Promise<void>; export declare function unregisterCommand(commandId: string, options?: CommandCommandOptions): Promise<void>; export declare function showCommandInfo(commandId: string, options?: CommandCommandOptions): Promise<void>; export {};