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 334B

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 with an array of the loaded effects.
  7. */
  8. export default function loadEffects(store: Object): Promise<Array<any>> { // eslint-disable-line no-unused-vars
  9. return Promise.resolve([]);
  10. }