Files
jitsi-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 13:12:31 +02:00
* @param {Object} _store - The Redux store.
2023-08-17 11:21:20 +02:00
* @returns {Promise} - A Promise which resolves with an array of the loaded effects.
*/
2023-02-02 13:12:31 +02:00
export default function loadEffects(_store: Object): Promise<Array<any>> {
return Promise.resolve([]);
}