mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00
5 lines
316 B
TypeScript
5 lines
316 B
TypeScript
export type WhiteSpace = 'initial' | 'normal' | 'nowrap';
|
|
export type TextAlignment = 'initial' | 'left' | 'center' | 'right';
|
|
export type TextTransform = 'initial' | 'none' | 'capitalize' | 'uppercase' | 'lowercase';
|
|
export type TextDecoration = 'none' | 'underline' | 'line-through' | 'underline line-through';
|