UNPKG

@enclaved/encli

Version:

CLI utilities for working with enclaved application server for TEEs

17 lines (16 loc) 524 B
/** * Inspect Keycrux Server command implementation */ import { Command } from "commander"; /** * Run the inspect command * @param pubkey Public key of the keycrux service * @param relay Relay URL of the service * @returns Result of the inspect operation */ export declare function runInspectCommand(pubkey: string, relay: string): Promise<void>; /** * Register the inspect command with the CLI * @param program Commander program instance */ export declare function registerInspectCommand(program: Command): void;