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