@storybook/addon-svelte-csf 4.0.3 → 4.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -44,6 +44,8 @@ interface TemplateProps extends BaseAnnotations<any, DecoratorReturnType> {
|
|
|
44
44
|
id?: string;
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
+
interface MetaProps extends BaseMeta<any>, BaseAnnotations<any, DecoratorReturnType> { }
|
|
48
|
+
|
|
47
49
|
interface Slots {
|
|
48
50
|
default: {
|
|
49
51
|
args: any;
|
|
@@ -54,7 +56,7 @@ interface Slots {
|
|
|
54
56
|
/**
|
|
55
57
|
* Meta.
|
|
56
58
|
*/
|
|
57
|
-
export class Meta extends SvelteComponent<
|
|
59
|
+
export class Meta extends SvelteComponent<MetaProps> { }
|
|
58
60
|
/**
|
|
59
61
|
* Story.
|
|
60
62
|
*/
|