From fbb28171f644767739d258145443c1155acac19b Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Wed, 15 May 2024 13:33:06 +0200 Subject: [PATCH] fix: rename imported type to avoid clashes --- 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 {} }