@vortex.so/cli
Version:
CLI to interact with Vortex.
9 lines (8 loc) • 360 B
TypeScript
import type { Operation } from './ship.operation';
export declare function getOutput(operation: Operation): Promise<Operation>;
/**
* Prompts the user for the new version number.
*
* @returns - A tuple containing the new version number and the release type (if any)
*/
export declare function promptForNewVersion(operation: Operation): Promise<Operation>;