Files
jitsi-meet/react/features/base/environment/checkChromeExtensionsInstalled.native.ts
Saúl Ibarra Corretgé 7cd39b7983 feat(ts) make tsc happy
2022-11-02 09:03:14 +01:00

11 lines
323 B
TypeScript

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