RCTConvert+Text.h 531 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) Facebook, Inc. and its affiliates.
  3. *
  4. * This source code is licensed under the MIT license found in the
  5. * LICENSE file in the root directory of this source tree.
  6. */
  7. #import <React/RCTConvert.h>
  8. #import "RCTTextTransform.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RCTConvert (Text)
  11. + (UITextAutocorrectionType)UITextAutocorrectionType:(nullable id)json;
  12. + (UITextSpellCheckingType)UITextSpellCheckingType:(nullable id)json;
  13. + (RCTTextTransform)RCTTextTransform:(nullable id)json;
  14. @end
  15. NS_ASSUME_NONNULL_END