UNPKG

botbuilder-formflow

Version:
17 lines 380 B
const FormFlow = require('../../../botbuilder-formflow'); module.exports = [ new FormFlow.SwitchDialog({ id : 'subdialog', prompt : 'Please, select subdialog', choices : { 'Add' : '/add', 'Remove' : [ function ( session ) { session.endDialogWithResult({ "response":'Hello world!' }); } ] } }) ]