Files
jitsi-meet/react/features/mobile/react-native-sdk/functions.js
Calinteodor 8a4990d9ae sdk(react-native-sdk): rnsdk screenshare android fix (#13884)
sdk(react-native-sdk): rnsdk screenshare android fix
2023-11-07 12:22:02 +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;
}