mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
17 lines
445 B
Objective-C
17 lines
445 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#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;
|
|
|
|
- (void)dismiss;
|
|
|
|
@end
|