2016-11-23 05:41:07 -08:00
|
|
|
/**
|
2018-09-11 15:27:47 -07:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2016-11-23 05:41:07 -08:00
|
|
|
*
|
2018-02-16 18:24:55 -08:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2016-11-23 05:41:07 -08:00
|
|
|
*/
|
|
|
|
|
2016-11-23 11:33:44 -08:00
|
|
|
#import <React/RCTConvert.h>
|
2018-05-16 13:35:33 -07:00
|
|
|
|
|
|
|
#import "RCTTextTransform.h"
|
2016-11-23 05:41:07 -08:00
|
|
|
|
2018-01-23 23:17:57 -08:00
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2016-11-23 05:41:07 -08:00
|
|
|
@interface RCTConvert (Text)
|
|
|
|
|
2018-01-23 23:17:57 -08:00
|
|
|
+ (UITextAutocorrectionType)UITextAutocorrectionType:(nullable id)json;
|
|
|
|
+ (UITextSpellCheckingType)UITextSpellCheckingType:(nullable id)json;
|
2018-04-16 08:59:26 -07:00
|
|
|
+ (RCTTextTransform)RCTTextTransform:(nullable id)json;
|
2016-11-23 05:41:07 -08:00
|
|
|
|
|
|
|
@end
|
2018-01-23 23:17:57 -08:00
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|