@enclaved/encli
Version:
CLI utilities for working with enclaved application server for TEEs
18 lines (17 loc) • 445 B
TypeScript
/**
* List Containers command implementation
*/
import { Command } from "commander";
/**
* Run the list command
* @returns Result of the list operation
*/
export declare function runListCommand({ pubkey, relay, }: {
pubkey?: string;
relay?: string;
}): Promise<void>;
/**
* Register the list command with the CLI
* @param program Commander program instance
*/
export declare function registerListCommand(program: Command): void;