@heroku-cli/command
Version:
base class for Heroku CLI commands
13 lines (12 loc) • 352 B
TypeScript
import { type Config } from '@oclif/core';
interface PromptOptions {
argv: string[];
commandId: string;
config: Config;
}
/**
* Interactively prompts the user for command arguments and flags,
* then re-runs the command with the collected inputs.
*/
export declare function promptAndRun(options: PromptOptions): Promise<void>;
export {};