From 9cf992df035528090b88bd091bcabd15911867fa Mon Sep 17 00:00:00 2001 From: Caleb Hearon Date: Thu, 17 Oct 2024 22:31:31 -0400 Subject: [PATCH] overflow can be inherited or initial whoops, but those are never type checked anyways --- src/style.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/style.ts b/src/style.ts index f6adf0c..5724a77 100644 --- a/src/style.ts +++ b/src/style.ts @@ -171,7 +171,7 @@ export interface DeclaredStyle { zIndex?: number | 'auto' | Inherited | Initial; wordBreak?: 'break-word' | 'normal' | Inherited | Initial; overflowWrap?: 'anywhere' | 'break-word' | 'normal' | Inherited | Initial; - overflow?: 'visible' | 'hidden'; + overflow?: 'visible' | 'hidden' | Inherited | Initial; } export const EMPTY_STYLE: DeclaredStyle = {};