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
12 lines (11 loc) • 351 B
TypeScript
export interface PromptsQuestion {
message: 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>;