forked from storybookjs/addon-svelte-csf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
86 lines (80 loc) · 2.19 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import type { SvelteComponent } from 'svelte'
import type { Addon_BaseMeta as BaseMeta, Addon_BaseAnnotations as BaseAnnotations, StoryContext, WebRenderer } from '@storybook/types';
type DecoratorReturnType = void | SvelteComponent | {
Component: any,
props?: any
}
interface StoryProps extends BaseAnnotations<any, DecoratorReturnType, WebRenderer> {
/**
* Id of the story.
*
* Optional, auto-generated from name if not specified.
*/
id?: string;
/**
* Name of the story.
*/
name: string;
/**
* Id of the template used by this story.
*
* Optional. Used if the story has no body.
* If not specified, use the 'default' template.
*/
template?: string;
/**
* Specify which sources should be shown.
*
* By default, sources for an args story are auto-generated.
* If source is true, then the source of the story will be used instead.
* If source is a string, it replaces the source of the story.
*/
source?: boolean | string
}
interface TemplateProps extends BaseAnnotations<any, DecoratorReturnType> {
/**
* Id of the template.
*
* Optional. Use 'default' if not specified.
*/
id?: string;
}
interface MetaProps extends BaseMeta<any>, BaseAnnotations<any, DecoratorReturnType> {
/**
* Enable the tag 'autodocs'.
*
* @see [Automatic documentation](https://storybook.js.org/docs/svelte/writing-docs/autodocs)
*/
autodocs?: boolean;
/**
* List of tags to add to the stories.
*
* It should be a static array of strings.
*
* @example tags={['autodocs']}
*/
tags?: string[];
}
interface Slots {
default: {
args: any;
context: StoryContext;
[key: string]: any;
}
}
/**
* Meta.
*
* @deprecated Use `export const meta`. See https://github.com/storybookjs/addon-svelte-csf for an example
*/
export class Meta extends SvelteComponent<MetaProps> { }
/**
* Story.
*/
export class Story extends SvelteComponent<StoryProps, any, Slots> { }
/**
* Template.
*
* Allow to reuse definition between stories.
*/
export class Template extends SvelteComponent<TemplateProps, any, Slots> { }