1 // Copyright 2021-present 650 Industries. All rights reserved.
2 
3 #import <Foundation/Foundation.h>
4 #import <ExpoModulesCore/EXTaskConsumerInterface.h>
5 
6 NS_ASSUME_NONNULL_BEGIN
7 
8 @interface EXBackgroundRemoteNotificationConsumer : NSObject <EXTaskConsumerInterface>
9 
10 @property (nonatomic, strong) id<EXTaskInterface> task;
11 
12 @end
13 
14 NS_ASSUME_NONNULL_END
15