1 // Copyright 2018-present 650 Industries. All rights reserved. 2 3 #if __has_include(<EXNotifications/EXNotificationCategoriesModule.h>) 4 5 #import <EXNotifications/EXNotificationCategoriesModule.h> 6 #import "EXConstantsBinding.h" 7 8 NS_ASSUME_NONNULL_BEGIN 9 10 @interface EXScopedNotificationCategoriesModule : EXNotificationCategoriesModule 11 12 - (instancetype)initWithScopeKey:(NSString *)scopeKey; 13 14 + (void)maybeMigrateLegacyCategoryIdentifiersForProjectWithExperienceStableLegacyId:(NSString *)experienceStableLegacyId 15 scopeKey:(NSString *)scopeKey 16 isInExpoGo:(BOOL)isInExpoGo; 17 18 @end 19 20 NS_ASSUME_NONNULL_END 21 22 #endif 23