chore: v2.4.9
[poolifier.git] / src / pools / worker.ts
index 05b559850c3a16f4d682f25acaf42e20a3f982e0..8d62712b5d598ada970ae337ddee7eb2406f9193 100644 (file)
@@ -37,7 +37,7 @@ export type ExitHandler<Worker extends IWorker> = (
  */
 export interface Task<Data = unknown> {
   /**
-   * Input data that will be passed to the worker.
+   * Task input data that will be passed to the worker.
    */
   readonly data?: Data
   /**
@@ -48,6 +48,8 @@ export interface Task<Data = unknown> {
 
 /**
  * Worker tasks usage statistics.
+ *
+ * @internal
  */
 export interface TasksUsage {
   /**