mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
11 lines
323 B
TypeScript
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([]);
|
|
}
|