mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 02:54:11 +08:00
8 lines
402 B
TypeScript
8 lines
402 B
TypeScript
import { Color } from 'color';
|
|
import { Length } from 'ui/styling/style-properties';
|
|
|
|
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';
|