UNPKG

@enclaved/encli

Version:

CLI utilities for working with enclaved application server for TEEs

19 lines (18 loc) 535 B
/** * Wallet Default command implementation */ import { Command } from 'commander'; /** * Run the default command * @param name Name of the wallet to set as default (empty string to clear all defaults) * @returns Result of the default operation */ export declare function runDefaultCommand(name: string): Promise<{ success: boolean; name: string; }>; /** * Register the default command with the CLI * @param program Commander program instance */ export declare function registerDefaultCommand(program: Command): void;