# botbuilder-helpers

> helpers for microsoft botbuilder framework

Latest version **0.1.0** (published 2019-03-09) · ISC license · 0 weekly downloads

## Install

```sh
npm install botbuilder-helpers
pnpm add botbuilder-helpers
yarn add botbuilder-helpers
bun add botbuilder-helpers
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2019-03-09 |
| First published | 2019-03-09 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 3.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | tomas valkai |
| Maintainers | dbvt10 |
| Keywords | botbuilder, bot-builder, typing, typings, typing, indicator |

## Links

- npm: https://www.npmjs.com/package/botbuilder-helpers
- Repository: https://github.com/dbvt10/botbuilder-helpers
- Homepage: https://github.com/dbvt10/botbuilder-helpers#readme
- Issues: https://github.com/dbvt10/botbuilder-helpers/issues
- npm.io page: https://npm.io/package/botbuilder-helpers

## Dependencies (1)

- [botbuilder](https://npm.io/package/botbuilder.md) ^4.2.1

## Recent versions

- 0.1.0 (latest) — 2019-03-09

## README

# 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
);
```

---
_Source: https://npm.io/package/botbuilder-helpers · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
