feat: add version to pool information
[poolifier.git] / src / pools / pool.ts
index 855ce000497aadd1019a052db26707d188b418b1..22757f9a54a841597d0394c51675efa25ac08a5d 100644 (file)
@@ -68,6 +68,7 @@ export type PoolEvent = keyof typeof PoolEvents
  * Pool information.
  */
 export interface PoolInfo {
+  version: string
   type: PoolType
   worker: WorkerType
   minSize: number