// @flow import { PageReloadOverlay, SuspendedOverlay, UserMediaPermissionsOverlay } from './components/web'; /** * Returns the list of available platform specific overlays. * * @returns {Array} */ export function getOverlays(): Array { return [ PageReloadOverlay, SuspendedOverlay, UserMediaPermissionsOverlay ]; }