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