Unforked ExceptionsManager, AlertManager and AppState

This commit is contained in:
Nick Lockwood
2015-03-11 13:53:30 -07:00
parent 30d3117f96
commit 2424711a03
12 changed files with 376 additions and 10 deletions

View File

@@ -4,6 +4,14 @@
#import "RCTBridgeModule.h"
@interface RCTExceptionsManager : NSObject <RCTBridgeModule>
@protocol RCTExceptionsManagerDelegate <NSObject>
- (void)unhandledJSExceptionWithMessage:(NSString *)message stack:(NSArray *)stack;
@end
@interface RCTExceptionsManager : NSObject <RCTBridgeModule>
- (instancetype)initWithDelegate:(id<RCTExceptionsManagerDelegate>)delegate NS_DESIGNATED_INITIALIZER;
@end