RCTConvert+RNPStatus.m 609 B

1234567891011121314151617181920
  1. //
  2. // RCTConvert+RNPermissionsStatus.m
  3. // ReactNativePermissions
  4. //
  5. // Created by Yonah Forst on 23/03/16.
  6. // Copyright © 2016 Yonah Forst. All rights reserved.
  7. //
  8. #import "RCTConvert+RNPStatus.h"
  9. @implementation RCTConvert (RNPStatus)
  10. RCT_ENUM_CONVERTER(RNPType, (@{ @"location" : @(RNPTypeLocation),
  11. @"camera" : @(RNPTypeCamera),
  12. @"photo" : @(RNPTypePhoto),
  13. @"notification" : @(RNPTypeNotification)
  14. }),
  15. RNPTypeUnknown, integerValue)
  16. @end