From 54c069f5196909edd300b8fae2ca9748baa60856 Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Wed, 24 Sep 2025 11:20:42 -0700 Subject: [PATCH] fix: types export on ui/index --- packages/core/ui/index.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/core/ui/index.ts b/packages/core/ui/index.ts index 6920cccaf..eb100ec06 100644 --- a/packages/core/ui/index.ts +++ b/packages/core/ui/index.ts @@ -75,8 +75,10 @@ export type { AccessibilityDecrementEventData, AccessibilityIncrementEventData } export { addTaggedAdditionalCSS, removeTaggedAdditionalCSS, resolveFileNameFromUrl } from './styling/style-scope'; export { Background } from './styling/background'; export type { CacheMode } from './styling/background'; -export { parseCSSShadow, ShadowCSSValues } from './styling/css-shadow'; -export { parseCSSStroke, StrokeCSSValues } from './styling/css-stroke'; +export { parseCSSShadow } from './styling/css-shadow'; +export type { ShadowCSSValues } from './styling/css-shadow'; +export { parseCSSStroke } from './styling/css-stroke'; +export type { StrokeCSSValues } from './styling/css-stroke'; export { animationTimingFunctionConverter, timeConverter } from './styling/converters'; export { Font, FontStyle, FontWeight, FontVariationSettings } from './styling/font'; export type { FontStyleType, FontWeightType, FontVariationSettingsType } from './styling/font-interfaces';