您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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