feat: export additional symbols needed for strong types

This commit is contained in:
Nathan Walker
2025-09-16 19:47:12 -07:00
parent d60f8640f3
commit 82c5a8157b
5 changed files with 7 additions and 2 deletions

View File

@@ -75,13 +75,16 @@ 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 } from './styling/css-shadow';
export { parseCSSShadow, ShadowCSSValues } from './styling/css-shadow';
export { parseCSSStroke, 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';
export { Style } from './styling/style';
export type { CommonLayoutParams } from './styling/style';
export * from './styling/style-properties';
export * from './styling/length-shared';
export { LinearGradient } from './styling/linear-gradient';
export { CssAnimationParser, parseKeyframeDeclarations } from './styling/css-animation-parser';
export { CSSHelper } from './styling/css-selector';

View File

@@ -1,6 +1,7 @@
export { AbsoluteLayout } from './absolute-layout';
export { DockLayout } from './dock-layout';
export { FlexboxLayout } from './flexbox-layout';
export type { FlexFlow, Flex, AlignSelf, FlexDirection, FlexWrap, JustifyContent, AlignItems, AlignContent } from './flexbox-layout';
export { GridLayout, GridUnitType, ItemSpec } from './grid-layout';
export { RootLayout, getRootLayout, getRootLayoutById } from './root-layout';
export type { RootLayoutOptions, ShadeCoverOptions } from './root-layout';

View File

@@ -1,7 +1,6 @@
import { CoreTypes } from '../../core-types';
import { Color } from '../../color';
import { parseCSSShorthand } from './css-utils';
import { Length } from './length-shared';
export interface StrokeCSSValues {
width: CoreTypes.LengthType;