mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 19:32:27 +00:00
14 lines
309 B
JavaScript
14 lines
309 B
JavaScript
import { NativeModules } from 'react-native';
|
|
|
|
|
|
/**
|
|
* Determines if the ExternalAPI native module is available.
|
|
*
|
|
* @returns {boolean} If yes {@code true} otherwise {@code false}.
|
|
*/
|
|
export function isExternalAPIAvailable() {
|
|
const { ExternalAPI } = NativeModules;
|
|
|
|
return ExternalAPI !== null;
|
|
}
|