diff --git a/types/react-native/index.d.ts b/types/react-native/index.d.ts index 99998e9241..df8c1e7695 100644 --- a/types/react-native/index.d.ts +++ b/types/react-native/index.d.ts @@ -757,7 +757,9 @@ export interface LayoutChangeEvent { }; } +export type FontVariant = 'small-caps' | 'oldstyle-nums' | 'lining-nums' | 'tabular-nums' | 'proportional-nums'; export interface TextStyleIOS extends ViewStyle { + fontVariant?: FontVariant[]; letterSpacing?: number; textDecorationColor?: string; textDecorationStyle?: "solid" | "double" | "dotted" | "dashed";