1import { Platform } from 'expo-modules-core';
2let warningHasBeenShown = false;
3export default {
4    addListener: () => {
5        if (!warningHasBeenShown) {
6            console.warn(`[expo-notifications] Notifications handling is not yet fully supported on ${Platform.OS}. Handling notifications will have no effect.`);
7            warningHasBeenShown = true;
8        }
9    },
10    removeListeners: () => { },
11};
12//# sourceMappingURL=NotificationsHandlerModule.js.map