@iobroker/types
Version:
Since this package does not start with `@types/`, the types are not automatically included in your project. You need to add a reference to this package in your `tsconfig.json`:
19 lines (14 loc) • 389 B
Markdown
# Type definitions for ioBroker
## Usage
Since this package does not start with `/`, the types are not automatically included in your project. You need to add a reference to this package in your `tsconfig.json`:
```json
{
"compilerOptions": {
"types": ["node", "@iobroker/types"]
}
}
```
or by adding an import to a file in your project:
```ts
import '@iobroker/types';
```