jiti-meet/react/features/base/environment/checkChromeExtensionsInstal...

13 lines
377 B
TypeScript
Raw Normal View History

/* eslint-disable @typescript-eslint/no-unused-vars */
2022-11-01 12:36:32 +00: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 12:36:32 +00:00
*
* @returns {Promise[]}
*/
export default function checkChromeExtensionsInstalled(config: any = {}) {
2022-11-01 12:36:32 +00:00
return Promise.resolve([]);
}