add userSelect to TextStyles attributes

This commit is contained in:
MJMoshiri
2023-08-15 20:31:23 +03:00
parent 540c41be91
commit 2e4d8b6c14
@@ -339,6 +339,7 @@ export interface TextStyle extends TextStyleIOS, TextStyleAndroid, ViewStyle {
textShadowOffset?: {width: number; height: number} | undefined;
textShadowRadius?: number | undefined;
textTransform?: 'none' | 'capitalize' | 'uppercase' | 'lowercase' | undefined;
userSelect?: 'auto' | 'none' | 'text' | 'contain' | 'all' | undefined;
}
/**