您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }