From eceae2f4de17f1d686caa28243d1ee2655b678a4 Mon Sep 17 00:00:00 2001 From: Alex Hurtado Date: Thu, 19 Dec 2024 14:00:22 -0500 Subject: [PATCH] Document pass-through blend mode --- widget-api-standalone.d.ts | 1 + widget-api.d.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/widget-api-standalone.d.ts b/widget-api-standalone.d.ts index a544048..aef429c 100644 --- a/widget-api-standalone.d.ts +++ b/widget-api-standalone.d.ts @@ -227,6 +227,7 @@ declare namespace WidgetJSX { } type AlignItems = 'center' | 'start' | 'end' | 'baseline' type BlendMode = + | 'pass-through' | 'normal' | 'multiply' | 'screen' diff --git a/widget-api.d.ts b/widget-api.d.ts index a50316a..32e9caa 100644 --- a/widget-api.d.ts +++ b/widget-api.d.ts @@ -223,6 +223,7 @@ declare namespace WidgetJSX { } type AlignItems = 'center' | 'start' | 'end' | 'baseline' type BlendMode = + | 'pass-through' | 'normal' | 'multiply' | 'screen'