ReduceStore.d.ts 251 B

12345678910
  1. import types = require('./types');
  2. declare class ReduceStore {
  3. constructor(reducer: types.AnyFn, initialState: any);
  4. subscribe(listener: types.AnyFn): types.AnyFn;
  5. dispatch(action: any): any;
  6. getState(): any;
  7. }
  8. export = ReduceStore;