/** Created by ge on 12/17/15. */ import {Reducer, Hash} from "./interfaces"; import {Store} from "./Store"; export function createStore (reducer:Reducer|Hash, initialState:TState):any { return () => { return new Store(reducer, initialState); }; }