Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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. }