選択できるのは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. }