- We changed some internal structures, but you shouldn't be too affected by them as these are internal changes.
+### Pool options types declaration merge
+
+`FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`.
+
#### New `export` strategy
```js
#### New type definitions for input data and response
-For cluster worker and worker-thread pools, you can now only send and receive serializable `JSON` data.
+For cluster worker and worker-thread pools, you can now only send and receive serializable data.
_This is not a limitation by poolifier but NodeJS._
#### Public property replacements
**See examples folder for more details (in particular if you want to use a pool for [multiple functions](./examples/multiFunctionExample.js)).**
**Now TypeScript is also supported, find how to use it into the example folder**.
-Remember that workers can only send and receive serializable (JSON) data.
+Remember that workers can only send and receive serializable data.
## Node versions