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
(cherry picked from commit 47d4d3f)
  • Loading branch information
shilman authored and storybook-bot committed May 28, 2024
1 parent 49af324 commit 44e8f5e
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 44e8f5e

Please sign in to comment.