From 0e0d6e644f981de9a1544144b4527687d714814f Mon Sep 17 00:00:00 2001 From: Ian VanSchooten Date: Tue, 1 Nov 2022 16:10:29 -0400 Subject: [PATCH] Expose ReactFramework type --- code/renderers/react/src/public-types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/renderers/react/src/public-types.ts b/code/renderers/react/src/public-types.ts index 625fdfc31329..531ece5874ed 100644 --- a/code/renderers/react/src/public-types.ts +++ b/code/renderers/react/src/public-types.ts @@ -12,6 +12,8 @@ import type { SetOptional, Simplify } from 'type-fest'; import type { ReactFramework } from './types'; +export { ReactFramework }; + type JSXElement = keyof JSX.IntrinsicElements | JSXElementConstructor; /**