You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

overlays.web.ts 391B

1234567891011121314151617181920
  1. import {
  2. PageReloadOverlay,
  3. SuspendedOverlay,
  4. UserMediaPermissionsOverlay
  5. // @ts-ignore
  6. } from './components/web';
  7. /**
  8. * Returns the list of available platform specific overlays.
  9. *
  10. * @returns {Array<Object>}
  11. */
  12. export function getOverlays(): Array<Object> {
  13. return [
  14. PageReloadOverlay,
  15. SuspendedOverlay,
  16. UserMediaPermissionsOverlay
  17. ];
  18. }