Skip to content

Commit 9e9123e

Browse files
Update epic-decorator.ts
1 parent b7165b2 commit 9e9123e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/epic-decorator.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export function createEpics<T, S>(...instances: any[]): EpicMiddleware<T, S> {
3232
.map(({propertyName}) => instance[propertyName]));
3333

3434
const epics = [].concat(...epicsMetaData);
35-
const rootEpic = combineEpics<T>(...epics);
36-
return createEpicMiddleware<T>(rootEpic);
35+
const rootEpic = combineEpics<T, S>(...epics);
36+
return createEpicMiddleware<T, S>(rootEpic);
3737

3838
}

0 commit comments

Comments
 (0)