diff --git a/packages/core/types/css-types.ts b/packages/core/types/css-types.ts index 6f5a6c2a..b1fffdb4 100644 --- a/packages/core/types/css-types.ts +++ b/packages/core/types/css-types.ts @@ -5780,7 +5780,7 @@ export type LetterSpacingProperty = Globals | TLength | 'normal' | numb export type LineBreakProperty = Globals | 'anywhere' | 'auto' | 'loose' | 'normal' | 'strict' -export type LineClampProperty = Globals | 'none' | number +export type LineClampProperty = Globals | 'none' | number | (string & {}) export type LineHeightProperty = Globals | TLength | 'normal' | number | (string & {}) @@ -6254,7 +6254,7 @@ export type WebkitAppearanceProperty = export type WebkitBoxReflectProperty = Globals | TLength | 'above' | 'below' | 'left' | 'right' | (string & {}) -export type WebkitLineClampProperty = Globals | 'none' | number +export type WebkitLineClampProperty = Globals | 'none' | number | (string & {}) export type WebkitMaskProperty = Globals | Position | RepeatStyle | Box | 'border' | 'content' | 'none' | 'padding' | 'text' | (string & {})