jiti-meet/react/features/base/tracks/loadEffects.native.ts

10 lines
288 B
TypeScript
Raw Normal View History

/**
* Loads the enabled stream effects.
*
2023-02-02 11:12:31 +00:00
* @param {Object} _store - The Redux store.
* @returns {Promsie} - A Promise which resolves with an array of the loaded effects.
*/
2023-02-02 11:12:31 +00:00
export default function loadEffects(_store: Object): Promise<Array<any>> {
return Promise.resolve([]);
}