Apply dependencies update. (#369)
[poolifier.git] / src / pools / cluster / dynamic.ts
index 33497b0314ef1e46eb3bd129557f31b5e5f4cc17..33c05a9220415fb43317bea9aa172b62d20207c7 100644 (file)
@@ -8,9 +8,8 @@ import { FixedClusterPool } from './fixed'
  * This cluster pool creates new workers when the others are busy, up to the maximum number of workers.
  * When the maximum number of workers is reached, an event is emitted. If you want to listen to this event, use the pool's `emitter`.
  *
- * @template Data Type of data sent to the worker. This can only be serializable data.
- * @template Response Type of response of execution. This can only be serializable data.
- *
+ * @template DataType of data sent to the worker. This can only be serializable data.
+ * @template ResponseType of response of execution. This can only be serializable data.
  * @author [Christopher Quadflieg](https://github.com/Shinigami92)
  * @since 2.0.0
  */