UNPKG

212 BTypeScriptView Raw
1export interface Store {
2 setState: (partial: Object) => void;
3 getState: () => any;
4 subscribe: (listener: () => void) => () => void;
5}
6export default function createStore(initialState: object): Store;