1 // Copyright 2018-present 650 Industries. All rights reserved. 2 3 #import <ExpoModulesCore/EXInternalModule.h> 4 5 #import <UserNotifications/UserNotifications.h> 6 7 NS_ASSUME_NONNULL_BEGIN 8 9 @protocol EXNotificationBuilder 10 11 - (UNMutableNotificationContent *)notificationContentFromRequest:(NSDictionary *)request; 12 13 @end 14 15 @interface EXNotificationBuilder : NSObject <EXInternalModule, EXNotificationBuilder> 16 17 @end 18 19 NS_ASSUME_NONNULL_END 20