export type { TextProps } from './props'; /** * 文字修饰类型 * * @see text-decoration https://developer.mozilla.org/zh-CN/docs/Web/CSS/text-decoration */ export type TextDecoration = 'overline' | 'line-through' | 'underline';