Skip to content

Commit

Permalink
Merge pull request #51 from marvinhagemeister/ts_typings
Browse files Browse the repository at this point in the history
Update TypeScript typings
  • Loading branch information
developit authored May 5, 2018
2 parents 781b1ac + 3d70162 commit 9cffcf3
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 @@ -17,7 +17,7 @@ export interface Store<K> {
getState(): K;
}

export function createStore<K>(state?: K): Store<K>;
export default function createStore<K>(state?: K): Store<K>;

export type ActionFn<K> = (state: K) => object;

Expand Down

0 comments on commit 9cffcf3

Please sign in to comment.