1import { Platform } from 'expo-modules-core';
2
3export default {
4  get name(): string {
5    return 'ExpoUpdates';
6  },
7  async reload(): Promise<void> {
8    if (!Platform.isDOMAvailable) return;
9    window.location.reload(true);
10  },
11};
12