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

functions.js 309B

12345678910111213
  1. import { NativeModules } from 'react-native';
  2. /**
  3. * Determimes if the ExternalAPI native module is available.
  4. *
  5. * @returns {boolean} If yes {@code true} otherwise {@code false}.
  6. */
  7. export function isExternalAPIAvailable() {
  8. const { ExternalAPI } = NativeModules;
  9. return ExternalAPI !== null;
  10. }