1import { Platform } from 'expo-modules-core';
2export default {
3    get name() {
4        return 'ExpoUpdates';
5    },
6    async reload() {
7        if (!Platform.isDOMAvailable)
8            return;
9        window.location.reload(true);
10    },
11};
12//# sourceMappingURL=ExpoUpdates.web.js.map