From fff99cc117ba778398f9e11be6fab46f620b5547 Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Wed, 21 May 2025 15:04:47 -0700 Subject: [PATCH] [stylex] Add types to exports These types are currently used by React Strict DOM --- packages/@stylexjs/stylex/src/stylex.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/@stylexjs/stylex/src/stylex.js b/packages/@stylexjs/stylex/src/stylex.js index 36df091bc..1ece5a7f4 100644 --- a/packages/@stylexjs/stylex/src/stylex.js +++ b/packages/@stylexjs/stylex/src/stylex.js @@ -31,13 +31,19 @@ import type { ValueWithDefault } from './types/StyleXUtils'; import * as Types from './types/VarTypes'; export type { + CompiledStyles, + InlineStyles, + Keyframes, + MapNamespaces, StaticStyles, StaticStylesWithout, + StyleXArray, StyleXStyles, StyleXStylesWithout, Theme, Types, VarGroup, + PositionTry, }; import { styleq } from 'styleq';