Skip to content

Commit

Permalink
fix svelte type imports
Browse files Browse the repository at this point in the history
  • Loading branch information
JReinhold committed Jan 30, 2025
1 parent 581e837 commit c605c85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/renderers/svelte/src/mount.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { type BaseAnnotations } from 'storybook/internal/types';
import type { BaseAnnotations } from 'storybook/internal/types';

import { type StoryContext, type SvelteRenderer } from './public-types';
import type { StoryContext, SvelteRenderer } from './public-types';

export const mount: BaseAnnotations<SvelteRenderer>['mount'] = (context: StoryContext) => {
return async (Component, options) => {
Expand Down

0 comments on commit c605c85

Please sign in to comment.