Files
jitsi-meet/react/features/base/environment/checkChromeExtensionsInstalled.native.ts

11 lines
323 B
TypeScript
Raw Normal View History

2022-11-01 13:36:32 +01:00
/**
* Checks whether the chrome extensions defined in the config file are installed or not.
*
* @param {Object} _config - Objects containing info about the configured extensions.
2022-11-01 13:36:32 +01:00
*
* @returns {Promise[]}
*/
export default function checkChromeExtensionsInstalled(_config: any = {}) {
2022-11-01 13:36:32 +01:00
return Promise.resolve([]);
}