選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

loadEffects.native.ts 288B

123456789
  1. /**
  2. * Loads the enabled stream effects.
  3. *
  4. * @param {Object} _store - The Redux store.
  5. * @returns {Promsie} - 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. }