Files
jitsi-meet/react/features/base/environment/checkChromeExtensionsInstalled.native.ts
Saúl Ibarra Corretgé edf5e1c094 fix(ts) fix mysterious linting errors
We have a rule that should apply here, but somehow it doesn't...
2022-11-02 09:03:14 +01:00

13 lines
377 B
TypeScript

/* eslint-disable @typescript-eslint/no-unused-vars */
/**
* 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([]);
}