1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const config_plugins_1 = require("expo/config-plugins");
4const withNotificationsAndroid_1 = require("./withNotificationsAndroid");
5const withNotificationsIOS_1 = require("./withNotificationsIOS");
6const pkg = require('expo-notifications/package.json');
7const withNotifications = (config, props) => {
8    config = (0, withNotificationsAndroid_1.withNotificationsAndroid)(config, props || {});
9    config = (0, withNotificationsIOS_1.withNotificationsIOS)(config, props || {});
10    return config;
11};
12exports.default = (0, config_plugins_1.createRunOncePlugin)(withNotifications, pkg.name, pkg.version);
13