// Copyright 2018-present 650 Industries. All rights reserved. #import #import #import NS_ASSUME_NONNULL_BEGIN @interface EXNotificationSchedulerModule : UMExportedModule - (NSArray * _Nonnull)serializeNotificationRequests:(NSArray * _Nonnull) requests; - (void)cancelNotification:(NSString *)identifier resolve:(UMPromiseResolveBlock)resolve rejecting:(UMPromiseRejectBlock)reject; - (void)cancelAllNotificationsWithResolver:(UMPromiseResolveBlock)resolve rejecting:(UMPromiseRejectBlock)reject; - (UNNotificationRequest *)buildNotificationRequestWithIdentifier:(NSString *)identifier content:(NSDictionary *)contentInput trigger:(NSDictionary *)triggerInput; @end NS_ASSUME_NONNULL_END