Skip to content

Commit

Permalink
fix: Export missing types from Runnable
Browse files Browse the repository at this point in the history
  • Loading branch information
Iku-turso committed Sep 26, 2022
1 parent fdb2123 commit 05f48b4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/injectable-utils/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import { runManyFor } from './src/runnable/run-many-for';
import { runManySyncFor } from './src/runnable/run-many-sync-for';
import { runManyFor, Runnable } from './src/runnable/run-many-for';
import { runManySyncFor, RunnableSync } from './src/runnable/run-many-sync-for';

export type { RunnableSync, Runnable };

export { runManyFor, runManySyncFor };

0 comments on commit 05f48b4

Please sign in to comment.