UNPKG

sfdx-hardis

Version:

Swiss-army-knife Toolbox for Salesforce. Allows you to define a complete CD/CD Pipeline. Orchestrate base commands and assist users with interactive wizards

14 lines (13 loc) 402 B
export interface PromptsQuestion { message: string; description: string; placeholder?: string; type: "select" | "multiselect" | "confirm" | "text" | "number"; name?: string; choices?: Array<any>; default?: any; validate?: any; initial?: any; optionsPerPage?: number; } export declare function prompts(options: PromptsQuestion | PromptsQuestion[]): Promise<any>;