-
Notifications
You must be signed in to change notification settings - Fork 0
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
}
Documentation
-
Interfaces