This commit is contained in:
Norbert de Langen 2022-10-23 19:03:12 +02:00
parent 367cc6924c
commit f7b78e3a67
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762

View File

@ -1,14 +1,14 @@
import { describe, test } from '@jest/globals';
import { satisfies } from '@storybook/core-common';
import { ComponentAnnotations, StoryAnnotations } from '@storybook/csf';
import type { ComponentAnnotations, StoryAnnotations } from '@storybook/types';
import { expectTypeOf } from 'expect-type';
import { ComponentProps, SvelteComponentTyped } from 'svelte';
import type { ComponentProps, SvelteComponentTyped } from 'svelte';
import Button from './__test__/Button.svelte';
import Decorator from './__test__/Decorator.svelte';
import Decorator2 from './__test__/Decorator2.svelte';
import { DecoratorFn, Meta, StoryObj } from './public-types';
import { SvelteFramework } from './types';
import type { DecoratorFn, Meta, StoryObj } from './public-types';
import type { SvelteFramework } from './types';
type SvelteStory<Component extends SvelteComponentTyped, Args, RequiredArgs> = StoryAnnotations<
SvelteFramework<Component>,