jitsi-meet/react/features/base/tracks/loadEffects.native.ts
theluyuan 38ba663466
Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
init
2025-09-02 14:49:16 +08:00

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([]);
}