mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
10 lines
288 B
TypeScript
10 lines
288 B
TypeScript
/**
|
|
* Loads the enabled stream effects.
|
|
*
|
|
* @param {Object} _store - The Redux store.
|
|
* @returns {Promise} - A Promise which resolves with an array of the loaded effects.
|
|
*/
|
|
export default function loadEffects(_store: Object): Promise<Array<any>> {
|
|
return Promise.resolve([]);
|
|
}
|