mirror of
https://github.com/status-im/react-native-firebase.git
synced 2026-08-30 21:51:15 +00:00
21 lines
329 B
Objective-C
21 lines
329 B
Objective-C
#ifndef RNFirebaseFunctions_h
|
|
#define RNFirebaseFunctions_h
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#if __has_include(<FirebaseFunctions/FIRFunctions.h>)
|
|
#import <React/RCTBridgeModule.h>
|
|
|
|
@interface RNFirebaseFunctions : NSObject <RCTBridgeModule> {
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
#else
|
|
@interface RNFirebaseFunctions : NSObject
|
|
@end
|
|
#endif
|
|
|
|
#endif
|
|
|