@scriptcraft/types
Version:
ScriptCraft types
20 lines (13 loc) • 487 B
Markdown
# Scriptcraft Types
These are the TypeScript ambient definitions for Scriptcraft. Use this package as a dependency when developing [Scriptcraft Modular Architecture](https://github.com/Magikcraft/scriptcraft-modular-arch) Plugins in Typescript (or even in Javascript with VS Code).
## Install
To install to your project:
```bash
npm i --save @scriptcraft/types
```
Now add the following in the `tsconfig.json` of your SMA project:
```json
"types": [
"@scriptcraft/types"
]
```