UNPKG

@enclaved/encli

Version:

CLI utilities for working with enclaved application server for TEEs

20 lines (19 loc) 520 B
/** * Sign Release command implementation */ import { Command } from "commander"; /** * Run the sign_release command * @param options Command options * @returns Result of the sign release operation */ export declare function runSignRelease({ uri, dir, prod, }: { uri: string; dir: string; prod: boolean; }): Promise<void>; /** * Register the sign_release command with the CLI * @param program Commander program instance */ export declare function registerSignReleaseCommand(program: Command): void;