ethers.js/packages/cli/prompt.d.ts

10 lines
447 B
TypeScript
Raw Normal View History

2019-05-15 01:48:48 +03:00
export declare type PromptOptions = {
choice?: Array<string>;
defaultChoice?: string;
mask?: string;
};
export declare function getProgressBar(action: string): (percent: number) => void;
export declare function getPassword(prompt: string): Promise<string>;
export declare function getMessage(prompt: string): Promise<string>;
export declare function getChoice(prompt: string, choices: string, defaultChoice?: string): Promise<string>;