2015-03-23 22:07:33 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2015-03-23 22:07:33 +00:00
|
|
|
*/
|
2015-01-30 01:10:49 +00:00
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2016-11-23 15:47:52 +00:00
|
|
|
#import <React/RCTBridgeModule.h>
|
|
|
|
#import <React/RCTInvalidating.h>
|
2015-01-30 01:10:49 +00:00
|
|
|
|
2016-09-27 13:19:45 +00:00
|
|
|
typedef NS_ENUM(NSInteger, RCTAlertViewStyle) {
|
|
|
|
RCTAlertViewStyleDefault = 0,
|
|
|
|
RCTAlertViewStyleSecureTextInput,
|
|
|
|
RCTAlertViewStylePlainTextInput,
|
|
|
|
RCTAlertViewStyleLoginAndPasswordInput
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-09-18 15:40:49 +00:00
|
|
|
@interface RCTAlertManager : NSObject <RCTBridgeModule, RCTInvalidating>
|
2015-01-30 01:10:49 +00:00
|
|
|
|
|
|
|
@end
|