2015-03-23 15:07:33 -07:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*/
|
2015-01-29 17:10:49 -08:00
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
@interface RCTRedBox : NSObject
|
|
|
|
|
|
|
|
+ (instancetype)sharedInstance;
|
|
|
|
|
|
|
|
- (void)showErrorMessage:(NSString *)message;
|
|
|
|
- (void)showErrorMessage:(NSString *)message withDetails:(NSString *)details;
|
|
|
|
- (void)showErrorMessage:(NSString *)message withStack:(NSArray *)stack;
|
|
|
|
- (void)updateErrorMessage:(NSString *)message withStack:(NSArray *)stack;
|
|
|
|
|
2015-03-14 10:52:40 -07:00
|
|
|
- (NSString *)currentErrorMessage;
|
|
|
|
|
2015-01-29 17:10:49 -08:00
|
|
|
- (void)dismiss;
|
|
|
|
|
|
|
|
@end
|