1 // Copyright © 2021 650 Industries. All rights reserved. 2 3 #import <Foundation/Foundation.h> 4 5 NS_ASSUME_NONNULL_BEGIN 6 7 @interface NSDictionary<__covariant KeyType, __covariant ObjectType> (EXJSONUtils) 8 9 - (NSString *)expo_stringForKey:(KeyType)key; 10 - (nullable NSString *)expo_nullableStringForKey:(KeyType)key; 11 - (NSNumber *)expo_numberForKey:(KeyType)key; 12 - (nullable NSNumber *)expo_nullableNumberForKey:(KeyType)key; 13 - (NSArray *)expo_arrayForKey:(KeyType)key; 14 - (nullable NSArray *)expo_nullableArrayForKey:(KeyType)key; 15 - (NSDictionary *)expo_dictionaryForKey:(KeyType)key; 16 - (nullable NSDictionary *)expo_nullableDictionaryForKey:(KeyType)key; 17 18 @end 19 20 NS_ASSUME_NONNULL_END 21