# Waveskeeper-types

[![npm](https://img.shields.io/npm/v/@waves/waveskeeper-types?color=blue&label=%40waves%2Fwaveskeeper-types&logo=npm)](https://www.npmjs.com/package/@waves/waveskeeper-types)

Library with types for [Waves Keeper](https://github.com/wavesplatform/waves-keeper) API.

## How to use

`npm install @waves/waveskeeper-types`

Include to tsconfig.json this line:

```
{
    "compilerOptions": {
        ...
        "typeRoots": ["./node_modules/@waves/waveskeeper-types", ...]
        ...
    }
}
```
or this line:

```
{
    "compilerOptions": {
        ...
        "types": ["./node_modules/@waves/waveskeeper-types", .....],
        ...
    }
}
```
