store.js 237 B

12345678910
  1. // @flow
  2. declare module 'store' {
  3. declare module.exports: {
  4. each: (fn: (value: any, key: string) => void) => void,
  5. get: (key: string) => any,
  6. remove: (key: string) => any,
  7. set: (key: string, value: any) => void,
  8. }
  9. }