UNPKG

@enclaved/encli

Version:

CLI utilities for working with enclaved application server for TEEs

20 lines (19 loc) 522 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({ dir, prod, repo, }: { dir: string; prod: boolean; repo: string; }): Promise<void>; /** * Register the sign_release command with the CLI * @param program Commander program instance */ export declare function registerSignReleaseCommand(program: Command): void;