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.ts 288B

123456789
  1. /**
  2. * Loads the enabled stream effects.
  3. *
  4. * @param {Object} _store - The Redux store.
  5. * @returns {Promise} - A Promise which resolves with an array of the loaded effects.
  6. */
  7. export default function loadEffects(_store: Object): Promise<Array<any>> {
  8. return Promise.resolve([]);
  9. }