Skip to content

IPromptOptions

Steve edited this page Apr 29, 2020 · 1 revision
export interface IPromptOptions {
    readonly buttons: string[], // values for the buttons
    buttonLabels: string[], // labels for the buttons
    validAnswers: { [key: string]: string }, // map of valid answers to commands
    validReplies: { [key: string]: string } // map of commands to answers
}
Clone this wiki locally