mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 04:41:36 +08:00
14 lines
504 B
TypeScript
14 lines
504 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';
|
|
export type TextShadow = {
|
|
offsetX: Length;
|
|
offsetY: Length;
|
|
blurRadius: Length;
|
|
color: Color;
|
|
};
|