UNPKG

botbuilder-helpers

Version:

helpers for microsoft botbuilder framework

31 lines (22 loc) 500 B
# botbuilder-helpers ### sendTextWithTyping Sending text with typing. The typing length is based on text argument length. ```js await sendTextWithTyping(context, text); ``` ### sendTextWithTyping Send only typing. You can pass length. ```js await sendTyping(context, length); ``` ### stepActionWithTyping ```js const text = "My context action with typing."; const menu = ["CHOICE"]; await stepActionWithTyping( context, () => context.prompt("PROMPT_ID", text, menu), text.length ); ```