From 44e8f5e7ae1b7a4e96b05cd6230e13b10ac8c364 Mon Sep 17 00:00:00 2001 From: Michael Shilman Date: Tue, 28 May 2024 02:22:05 +0800 Subject: [PATCH] Merge pull request #27155 from SimenB/patch-1 Theming: Fix self-referencing type (cherry picked from commit 47d4d3f2c577a617099689984a626081956559d9) --- code/lib/theming/src/emotionAugmentation.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/lib/theming/src/emotionAugmentation.d.ts b/code/lib/theming/src/emotionAugmentation.d.ts index 1a48313f84e4..d5ceb8b427f6 100644 --- a/code/lib/theming/src/emotionAugmentation.d.ts +++ b/code/lib/theming/src/emotionAugmentation.d.ts @@ -4,6 +4,6 @@ import '@emotion/react'; declare module '@emotion/react' { - type StorybookTheme = import('./types').StorybookTheme; - export interface Theme extends StorybookTheme {} + type StorybookThemeInterface = import('./types').StorybookTheme; + export interface Theme extends StorybookThemeInterface {} }