2025-04-23 18:57:46 +02:00

12 lines
585 B
TypeScript

import { initializeSoundsForSafari } from '../global/actions/ui/calls';
import { IS_IOS, IS_SAFARI } from '../util/browser/windowEnvironment';
export { default as GroupCall } from '../components/calls/group/GroupCall';
export { default as ActiveCallHeader } from '../components/calls/ActiveCallHeader';
export { default as PhoneCall } from '../components/calls/phone/PhoneCall';
export { default as RatePhoneCallModal } from '../components/calls/phone/RatePhoneCallModal';
if (IS_SAFARI || IS_IOS) {
document.addEventListener('click', initializeSoundsForSafari, { once: true });
}