Merge pull request #77 from pioardi/issue-73-use-strict-compiler-flag-in-tsconfig
[poolifier.git] / src / index.ts
index c24d447dd015b93fbb970da9d4db8c260b28b0c0..db6960b86af815b03e43460a3cfef9dfc591a3f8 100644 (file)
@@ -1,14 +1,14 @@
-import FixedThreadPool from './fixed'
 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 }