INNER CODE UNIT · JavaScript
didResetProvider
react-native-webrtc/react-native-callkeep · actions.js:73
const didResetProvider = handler =>
eventEmitter.addListener(RNCallKeepProviderReset, handler);
const checkReachability = handler =>
eventEmitter.addListener(RNCallKeepCheckReachability, handler);
const didLoadWithEvents = handler =>
eventEmitter.addListener(RNCallKeepDidLoadWithEvents, handler);
const showIncomingCallUi = handler =>
eventEmitter.addListener(RNCallKeepShowIncomingCallUi, (data) => handler(data));
const silenceIncomingCall = handler =>
eventEmitter.addListener(RNCallKeepOnSilenceIncomingCall, (data) => handler(data));
const createIncomingConnectionFailed = handler =>
eventEmitter.addListener(RNCallKeepOnIncomingConnectionFailed, (data) => handler(data));