| 1234567891011121314151617181920 | #import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@interface RNNNavigationOptions : NSObject
@property (nonatomic, strong) NSNumber* topBarBackgroundColor;
@property (nonatomic, strong) NSNumber* topBarTextColor;
@property (nonatomic, strong) NSNumber* statusBarHidden;
@property (nonatomic, strong) NSString* title;
@property (nonatomic, strong) NSString* setTabBadge;
-(instancetype)init;
-(instancetype)initWithDict:(NSDictionary *)navigationOptions;
-(void)applyOn:(UIViewController*)viewController;
-(void)mergeWith:(NSDictionary*)otherOptions;
@end
 |