dbot-framework-types
v1.1.0
Published
TypeScript types for dbot-framework
Downloads
8
Maintainers
Readme
dbot-framework-types
Installation
Run npm install --save-dev dbot-framework-types in your project folder
Make sure you have dbot-framework installed as well
Use
Method 1 (Recommended):
In tsconfig.json under compilerOptions put this under types:
{
"compilerOptions": {
// ... other settings
"types": ["dbot-framework-types"]
}
}Method 2:
At the top of your .ts file if you include dbot-framework, then put:
/// <reference types="dbot-framework-types" />