The official docs for Microsoft bot-framework SDK v4 do not demonstrate how to send a typing indicator (whereas v3 has these instructions). I\'m using DirectLine and botfram
I believe you should do something like this
await context.sendActivities([ { type: 'typing' }, { type: 'delay', value: 2000 }, { type: 'message', text: 'Your message here' } ]);