//
//  RNBackgroundTimer.h
//  react-native-background-timer
//
//  Created by IjzerenHein on 06-09-2016.
//  Copyright (c) ATO Gear. All rights reserved.
//

#import <React/RCTBridgeModule.h>
// Support React Native headers both in the React namespace, where they are in RN version 0.40+,
// and no namespace, for older versions of React Native
#if __has_include(<React/RCTEventEmitter.h>)
#import <React/RCTEventEmitter.h>
#else
#import "RCTEventEmitter.h"
#endif


@interface RTKRNBackgroundTimer : RCTEventEmitter <RCTBridgeModule>

@end

