Skip to content

Commit

Permalink
fix(typings): dependencies type can now be anything, not just a POJO
Browse files Browse the repository at this point in the history
  • Loading branch information
jayphelps committed Mar 6, 2017
1 parent 1f2dcff commit 70ded6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ interface Adapter {

interface Options {
adapter?: Adapter;
dependencies: { [key:string]: any }
dependencies?: { [key: string]: any } | any;
}

export declare function createEpicMiddleware<T, S>(rootEpic: Epic<T, S>, options?: Options): EpicMiddleware<T, S>;
Expand Down

0 comments on commit 70ded6d

Please sign in to comment.