perf: allow finer grained control over tasks usage computation
[poolifier.git] / src / pools / selection-strategies / selection-strategies-types.ts
index c098768533fcced20246044d5411ad1ebb7bb76c..fb864c5b08ffc31a3cb1336225d31f285b0ce240 100644 (file)
@@ -34,6 +34,7 @@ export type WorkerChoiceStrategy = keyof typeof WorkerChoiceStrategies
  */
 export interface RequiredStatistics {
   runTime: boolean
+  avgRunTime: boolean
 }
 
 /**