2
0
mirror of synced 2025-01-20 19:30:11 +00:00
react-native-firebase/ios/RNFirebase/converters/RCTConvert+UIBackgroundFetchResult.m

10 lines
520 B
Objective-C

#import "RCTConvert+UIBackgroundFetchResult.h"
@implementation RCTConvert (UIBackgroundFetchResult)
RCT_ENUM_CONVERTER(UIBackgroundFetchResult, (@{ @"backgroundFetchResultNoData" : @(UIBackgroundFetchResultNoData),
@"backgroundFetchResultNewData" : @(UIBackgroundFetchResultNewData),
@"backgroundFetchResultFailed" : @(UIBackgroundFetchResultFailed)}),
UIBackgroundFetchResultNoData, integerValue)
@end