You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

loadEffects.native.js 318B

1234567891011
  1. // @flow
  2. /**
  3. * Loads the enabled stream effects.
  4. *
  5. * @param {Object} store - The Redux store.
  6. * @returns {Promsie} - A Promise which resolves when all effects are created.
  7. */
  8. export default function loadEffects(store: Object): Promise<any> { // eslint-disable-line no-unused-vars
  9. return Promise.resolve();
  10. }