@enclaved/encli
Version:
CLI utilities for working with enclaved application server for TEEs
20 lines (19 loc) • 538 B
TypeScript
/**
* Publish Release command implementation
*/
import { Command } from "commander";
/**
* Run the publish_release command
* @param options Command options
* @returns Result of the publish release operation
*/
export declare function runPublishRelease({ uri, dir, prod, }: {
uri: string;
dir: string;
prod: boolean;
}): Promise<void>;
/**
* Register the publish_release command with the CLI
* @param program Commander program instance
*/
export declare function registerPublishReleaseCommand(program: Command): void;