You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

checkChromeExtensionsInstalled.native.ts 377B

123456789101112
  1. /* eslint-disable @typescript-eslint/no-unused-vars */
  2. /**
  3. * Checks whether the chrome extensions defined in the config file are installed or not.
  4. *
  5. * @param {Object} config - Objects containing info about the configured extensions.
  6. *
  7. * @returns {Promise[]}
  8. */
  9. export default function checkChromeExtensionsInstalled(config: any = {}) {
  10. return Promise.resolve([]);
  11. }