cd6cf6f9f8
* update eslint configurations * show only eslint warnings * add dependencies * removed unused imports and add only warn to every library * move eslint-plugin-only-warn to the right place * fix import errors * remove files config * Update eslint.config * Remove blank line and spaces --------- Co-authored-by: Joel Mut <joel.mut@southworks.com> Co-authored-by: CeciliaAvila <cecilia.avila@southworks.com> |
||
---|---|---|
.. | ||
etc | ||
src | ||
tests | ||
.gitignore | ||
LICENSE | ||
api-extractor.json | ||
eslint.config.cjs | ||
package.json | ||
readme.md | ||
tsconfig.json |
readme.md
Bot Framework Bot Configuration library
This library provides the ability to read/write Bot Framework .bot files.
Usage
import * as bfc from 'botframework-config';
// load and decrypt .bot file
let configuration = bfc.BotConfiguration.load('my.bot', mysecret);
...
// save .bot file encrypted with secret
configuration.save('my.bot', mysecret);