UNPKG

@enclaved/encli

Version:

CLI utilities for working with enclaved application server for TEEs

20 lines (19 loc) 510 B
/** * Sign Build command implementation */ import { Command } from "commander"; /** * Run the sign_build command * @param options Command options * @returns Result of the sign build operation */ export declare function runSignBuild({ dir, prod, repo, }: { dir: string; prod: boolean; repo: string; }): Promise<void>; /** * Register the sign_build command with the CLI * @param program Commander program instance */ export declare function registerSignBuildCommand(program: Command): void;