Use strict compiler flag
[poolifier.git] / src / index.ts
index a5fe1519d711c43ec97cf5120a2af92cb40babe7..db6960b86af815b03e43460a3cfef9dfc591a3f8 100644 (file)
@@ -2,13 +2,13 @@ import DynamicThreadPool from './dynamic'
 import FixedThreadPool from './fixed'
 import { ThreadWorker } from './workers'
 
-export type {
+export {
   Draft,
   FixedThreadPoolOptions,
   WorkerWithMessageChannel
 } from './fixed'
-export type { DynamicThreadPoolOptions } from './dynamic'
-export type { ThreadWorkerOptions } from './workers'
+export { DynamicThreadPoolOptions } from './dynamic'
+export { ThreadWorkerOptions } from './workers'
 export { FixedThreadPool, DynamicThreadPool, ThreadWorker }
 
 module.exports = { FixedThreadPool, DynamicThreadPool, ThreadWorker }