diff --git a/ios/Text/AlignmentBaseline.h b/ios/Text/AlignmentBaseline.h index f0858b0a..f3e8f0e4 100644 --- a/ios/Text/AlignmentBaseline.h +++ b/ios/Text/AlignmentBaseline.h @@ -3,7 +3,7 @@ #import -NS_ENUM(NSInteger, AlignmentBaseline) { +typedef NS_ENUM(NSInteger, AlignmentBaseline) { AlignmentBaselineBaseline, AlignmentBaselineTextBottom, AlignmentBaselineAlphabetic, diff --git a/ios/Text/FontStyle.h b/ios/Text/FontStyle.h index 9bb37ef9..1dd5c9bb 100644 --- a/ios/Text/FontStyle.h +++ b/ios/Text/FontStyle.h @@ -3,7 +3,7 @@ #ifndef FontStyle_h #define FontStyle_h -NS_ENUM(NSInteger, FontStyle) { +typedef NS_ENUM(NSInteger, FontStyle) { FontStyleNormal, FontStyleItalic, FontStyleOblique, diff --git a/ios/Text/FontVariantLigatures.h b/ios/Text/FontVariantLigatures.h index ca9d8d01..81206bba 100644 --- a/ios/Text/FontVariantLigatures.h +++ b/ios/Text/FontVariantLigatures.h @@ -3,7 +3,7 @@ #ifndef FontVariantLigatures_h #define FontVariantLigatures_h -NS_ENUM(NSInteger, FontVariantLigatures) { +typedef NS_ENUM(NSInteger, FontVariantLigatures) { FontVariantLigaturesNormal, FontVariantLigaturesNone, FontVariantLigaturesDEFAULT = FontVariantLigaturesNormal, diff --git a/ios/Text/FontWeight.h b/ios/Text/FontWeight.h index 42af8ea0..2750fd0f 100644 --- a/ios/Text/FontWeight.h +++ b/ios/Text/FontWeight.h @@ -3,7 +3,7 @@ #ifndef FontWeight_h #define FontWeight_h -NS_ENUM(NSInteger, FontWeight) { +typedef NS_ENUM(NSInteger, FontWeight) { FontWeightNormal, FontWeightBold, FontWeightBolder, diff --git a/ios/Text/TextAnchor.h b/ios/Text/TextAnchor.h index 24213679..a4c18ef4 100644 --- a/ios/Text/TextAnchor.h +++ b/ios/Text/TextAnchor.h @@ -3,7 +3,7 @@ #ifndef TextAnchor_h #define TextAnchor_h -NS_ENUM(NSInteger, TextAnchor) { +typedef NS_ENUM(NSInteger, TextAnchor) { TextAnchorStart, TextAnchorMiddle, TextAnchorEnd, diff --git a/ios/Text/TextDecoration.h b/ios/Text/TextDecoration.h index e80e16c0..4a30d883 100644 --- a/ios/Text/TextDecoration.h +++ b/ios/Text/TextDecoration.h @@ -3,7 +3,7 @@ #ifndef TextDecoration_h #define TextDecoration_h -NS_ENUM(NSInteger, TextDecoration) { +typedef NS_ENUM(NSInteger, TextDecoration) { TextDecorationNone, TextDecorationUnderline, TextDecorationOverline, diff --git a/ios/Text/TextLengthAdjust.h b/ios/Text/TextLengthAdjust.h index 0f7aeccb..e93af930 100644 --- a/ios/Text/TextLengthAdjust.h +++ b/ios/Text/TextLengthAdjust.h @@ -3,7 +3,7 @@ #ifndef TextLengthAdjust_h #define TextLengthAdjust_h -NS_ENUM(NSInteger, TextLengthAdjust) { +typedef NS_ENUM(NSInteger, TextLengthAdjust) { TextLengthAdjustSpacing, TextLengthAdjustSpacingAndGlyphs, TextLengthAdjustDEFAULT = TextLengthAdjustSpacing, diff --git a/ios/Text/TextPathMethod.h b/ios/Text/TextPathMethod.h index b3817733..a5f6defa 100644 --- a/ios/Text/TextPathMethod.h +++ b/ios/Text/TextPathMethod.h @@ -3,7 +3,7 @@ #ifndef TextPathMethod_h #define TextPathMethod_h -NS_ENUM(NSInteger, TextPathMethod) { +typedef NS_ENUM(NSInteger, TextPathMethod) { TextPathMethodAlign, TextPathMethodStretch, TextPathMethodDEFAULT = TextPathMethodAlign, diff --git a/ios/Text/TextPathMidLine.h b/ios/Text/TextPathMidLine.h index cc36c0b7..3911be2b 100644 --- a/ios/Text/TextPathMidLine.h +++ b/ios/Text/TextPathMidLine.h @@ -3,7 +3,7 @@ #ifndef TextPathMidLine_h #define TextPathMidLine_h -NS_ENUM(NSInteger, TextPathMidLine) { +typedef NS_ENUM(NSInteger, TextPathMidLine) { TextPathMidLineSharp, TextPathMidLineSmooth, TextPathMidLineDEFAULT = TextPathMidLineSharp, diff --git a/ios/Text/TextPathSide.h b/ios/Text/TextPathSide.h index 155259a2..90a55ce2 100644 --- a/ios/Text/TextPathSide.h +++ b/ios/Text/TextPathSide.h @@ -3,7 +3,7 @@ #ifndef TextPathSide_h #define TextPathSide_h -NS_ENUM(NSInteger, TextPathSide) { +typedef NS_ENUM(NSInteger, TextPathSide) { TextPathSideLeft, TextPathSideRight, TextPathSideDEFAULT = TextPathSideLeft, diff --git a/ios/Text/TextPathSpacing.h b/ios/Text/TextPathSpacing.h index 18d6b624..f40b5c45 100644 --- a/ios/Text/TextPathSpacing.h +++ b/ios/Text/TextPathSpacing.h @@ -3,7 +3,7 @@ #ifndef TextPathSpacing_h #define TextPathSpacing_h -NS_ENUM(NSInteger, TextPathSpacing) { +typedef NS_ENUM(NSInteger, TextPathSpacing) { TextPathSpacingAutoSpacing, TextPathSpacingExact, TextPathSpacingDEFAULT = TextPathSpacingAutoSpacing,