fix: fix sonarcloud analysis
[poolifier.git] / src / worker / cluster-worker.ts
index 655520ccedb84aeccc0c1231dfb7c4566747e2c0..8725dc89397c08d4b1e792333fd9fe08cd75ef62 100644 (file)
@@ -1,6 +1,6 @@
 import type { Worker } from 'node:cluster'
 import cluster from 'node:cluster'
-import type { MessageValue } from '../utility-types'
+import type { MessageValue, WorkerFunction } from '../utility-types'
 import { AbstractWorker } from './abstract-worker'
 import type { WorkerOptions } from './worker-options'
 
@@ -28,7 +28,10 @@ export class ClusterWorker<
    * @param fn - Function processed by the worker when the pool's `execution` function is invoked.
    * @param opts - Options for the worker.
    */
-  public constructor (fn: (data: Data) => Response, opts: WorkerOptions = {}) {
+  public constructor (
+    fn: WorkerFunction<Data, Response>,
+    opts: WorkerOptions = {}
+  ) {
     super(
       'worker-cluster-pool:poolifier',
       cluster.isPrimary,