2017-03-09 15:26:28 +00:00
|
|
|
#ifndef RNFirebaseDatabase_h
|
|
|
|
#define RNFirebaseDatabase_h
|
|
|
|
|
|
|
|
#import "Firebase.h"
|
|
|
|
#import "RCTEventEmitter.h"
|
|
|
|
#import "RCTBridgeModule.h"
|
|
|
|
|
|
|
|
@interface RNFirebaseDatabase : RCTEventEmitter <RCTBridgeModule> {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@property NSMutableDictionary *dbReferences;
|
2017-03-25 00:59:27 +00:00
|
|
|
@property NSMutableDictionary *transactions;
|
|
|
|
@property dispatch_queue_t transactionQueue;
|
2017-03-09 15:26:28 +00:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
#endif
|