mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 17:45:59 +00:00
d368ebfab2
Summary: First commit for Apple TV support: changes to existing Objective-C code so that it will compile correctly for tvOS. Closes https://github.com/facebook/react-native/pull/9649 Differential Revision: D3916021 Pulled By: javache fbshipit-source-id: 34acc9daf3efff835ffe38c43ba5d4098a02c830
26 lines
668 B
Objective-C
26 lines
668 B
Objective-C
/**
|
|
* 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.
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "RCTBridgeModule.h"
|
|
#import "RCTInvalidating.h"
|
|
|
|
typedef NS_ENUM(NSInteger, RCTAlertViewStyle) {
|
|
RCTAlertViewStyleDefault = 0,
|
|
RCTAlertViewStyleSecureTextInput,
|
|
RCTAlertViewStylePlainTextInput,
|
|
RCTAlertViewStyleLoginAndPasswordInput
|
|
};
|
|
|
|
|
|
@interface RCTAlertManager : NSObject <RCTBridgeModule, RCTInvalidating>
|
|
|
|
@end
|