Merge pull request #1833 from poolifier/combined-prs-branch
[poolifier.git] / examples / typescript / smtp-client-pool / src / pool.ts
index ec2ec1367c5f0219dd8f685d3977e1f61d0ddf7a..85fb4cdf94b187753900825f02720c8c60ff9450 100644 (file)
@@ -2,7 +2,7 @@ import { fileURLToPath } from 'node:url'
 import { dirname, extname, join } from 'node:path'
 import { DynamicThreadPool, availableParallelism } from 'poolifier'
 import type SMTPTransport from 'nodemailer/lib/smtp-transport/index.js'
-import { type WorkerData } from './types.js'
+import type { WorkerData } from './types.js'
 
 const workerFile = join(
   dirname(fileURLToPath(import.meta.url)),