mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 00:41:05 +08:00
Delete storybook.d.ts
This commit is contained in:
parent
1b2a38c6c4
commit
20b0322792
30
app/react/config/storybook.d.ts
vendored
30
app/react/config/storybook.d.ts
vendored
@ -1,30 +0,0 @@
|
||||
declare var module: any; // dangerous
|
||||
|
||||
type RenderFunction = Function;
|
||||
|
||||
interface StoryDecorator {
|
||||
(story: RenderFunction, context: { kind: string, story: string }): Object | null;
|
||||
}
|
||||
|
||||
interface Story {
|
||||
add (storyName: string, callback: Function): Story;
|
||||
addDecorator (decorator: StoryDecorator): Story;
|
||||
}
|
||||
|
||||
export function addDecorator(decorator: StoryDecorator): void;
|
||||
export function configure(fn: Function, module: any): void;
|
||||
export function linkTo(name: string, ...params: any[]): void;
|
||||
export function storiesOf(name: string, module: any): Story;
|
||||
export function action(name: string, ...params: any[]): any;
|
||||
|
||||
type StoryObject = {
|
||||
name: string,
|
||||
render: RenderFunction,
|
||||
};
|
||||
|
||||
type StoryBucket = {
|
||||
kind: string,
|
||||
stories: StoryObject[],
|
||||
};
|
||||
|
||||
export function getStorybook(): StoryBucket[];
|
Loading…
x
Reference in New Issue
Block a user