Skip to content

Commit

Permalink
Merge pull request #27155 from SimenB/patch-1
Browse files Browse the repository at this point in the history
Theming: Fix self-referencing type
  • Loading branch information
shilman authored May 27, 2024
2 parents f2667b4 + ea5a059 commit 47d4d3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/lib/theming/src/emotionAugmentation.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {}
}

0 comments on commit 47d4d3f

Please sign in to comment.