jiti-meet/react/features/overlay/overlays.web.js

25 lines
464 B
JavaScript
Raw Normal View History

2019-04-09 15:53:12 +00:00
// @flow
import {
PageReloadOverlay,
SlowGUMOverlay,
2019-04-09 15:53:12 +00:00
SuspendedOverlay,
UserMediaPermissionsOverlay
} from './components/web';
declare var interfaceConfig: Object;
/**
* Returns the list of available platform specific overlays.
*
* @returns {Array<Object>}
*/
export function getOverlays(): Array<Object> {
return [
PageReloadOverlay,
2019-04-09 15:53:12 +00:00
SuspendedOverlay,
UserMediaPermissionsOverlay,
SlowGUMOverlay
2019-04-09 15:53:12 +00:00
];
}