Files
NativeScript/packages/core/ui/text-base/text-base-interfaces.ts
Nathan Walker 673387cf99 chore: cleanup
2021-04-06 11:18:36 -07:00

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';