#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>

@interface RNNUtils : NSObject

+ (double)getDoubleOrKey:(NSDictionary *)dict
                 withKey:(NSString *)key
             withDefault:(double)defaultResult;
+ (BOOL)getBoolOrKey:(NSDictionary *)dict withKey:(NSString *)key withDefault:(BOOL)defaultResult;
+ (id)getObjectOrKey:(NSDictionary *)dict withKey:(NSString *)key withDefault:(id)defaultResult;
+ (NSNumber *)getCurrentTimestamp;
+ (BOOL)getDefaultWaitForRender;

@end
