// Copyright © 2018-present 650 Industries. All rights reserved. #import "EXExpoUserNotificationCenterProxy.h" #import "EXUserNotificationCenter.h" @implementation EXExpoUserNotificationCenterProxy + (const NSArray *)exportedInterfaces { return @[@protocol(EXUserNotificationCenterProxyInterface)]; } - (void)getNotificationSettingsWithCompletionHandler:(void(^)(UNNotificationSettings *settings))completionHandler { [[EXUserNotificationCenter sharedInstance] getNotificationSettingsWithCompletionHandler:completionHandler]; } - (void)requestAuthorizationWithOptions:(UNAuthorizationOptions)options completionHandler:(void (^)(BOOL granted, NSError *__nullable error))completionHandler { [[EXUserNotificationCenter sharedInstance] requestAuthorizationWithOptions:options completionHandler:completionHandler]; } @end