1 // Copyright 2021-present 650 Industries. All rights reserved. 2 3 #import <UMCore/UMExportedModule.h> 4 #import <UMCore/UMModuleRegistryConsumer.h> 5 #import <EXNotifications/EXNotificationsDelegate.h> 6 7 typedef NS_ENUM(NSUInteger, EXBackgroundNotificationResult) { 8 EXBackgroundNotificationResultNoData = 1, 9 EXBackgroundNotificationResultNewData = 2, 10 EXBackgroundNotificationResultFailed = 3, 11 }; 12 13 @interface EXBackgroundNotificationTasksModule : UMExportedModule <UMModuleRegistryConsumer> 14 15 16 @end 17