Files
jitsi-meet/react/features/mobile/react-native-sdk/functions.js
Calinteodor 45bf00d096 sdk(react-native-sdk): rnsdk screenshare android fix (#13884)
sdk(react-native-sdk): rnsdk screenshare android fix
2023-11-07 12:23:17 +02:00

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