UNPKG

@heroku-cli/command

Version:
13 lines (12 loc) 352 B
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 {};