Skip to content

Commit

Permalink
fix: rename imported type to avoid clashes
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed May 15, 2024
1 parent 879f979 commit fbb2817
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 fbb2817

Please sign in to comment.