UNPKG

@enclaved/encli

Version:

CLI utilities for working with enclaved application server for TEEs

20 lines (19 loc) 613 B
/** * Ensure Instance Signature command implementation */ import { Command } from "commander"; /** * Run the ensure_instance_signature command * @param options Command options * @returns Result of the ensure_instance_signature operation */ export declare function runEnsureInstanceSignature({ instance_id, dir, prod, }: { instance_id?: string; dir: string; prod: boolean; }): Promise<void>; /** * Register the ensure_instance_signature command with the CLI * @param program Commander program instance */ export declare function registerEnsureInstanceSignatureCommand(program: Command): void;