@enclaved/encli
Version:
CLI utilities for working with enclaved application server for TEEs
19 lines (18 loc) • 484 B
TypeScript
/**
* Wallet Remove command implementation
*/
import { Command } from 'commander';
/**
* Run the remove command
* @param name Name of the wallet to remove
* @returns Result of the remove operation
*/
export declare function runRemoveCommand(name: string): Promise<{
success: boolean;
name: string;
}>;
/**
* Register the remove command with the CLI
* @param program Commander program instance
*/
export declare function registerRemoveCommand(program: Command): void;