Merge pull request #13963 from geisterfurz007/feat/csf-types-preact

Preact: Add CSF types
This commit is contained in:
Michael Shilman 2021-02-20 21:30:09 +08:00 committed by GitHub
commit 3a75c6565d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 27 additions and 0 deletions

View File

@ -8,3 +8,5 @@ export {
forceReRender,
raw,
} from './preview';
export * from './preview/types-6-0';

View File

@ -0,0 +1,24 @@
import { AnyComponent } from 'preact';
import { Args as DefaultArgs, Annotations, BaseMeta, BaseStory } from '@storybook/addons';
import { StoryFnPreactReturnType } from './types';
export { Args, ArgTypes, Parameters, StoryContext } from '@storybook/addons';
type PreactComponent = AnyComponent<any, any>;
type PreactReturnType = StoryFnPreactReturnType;
/**
* Metadata to configure the stories for a component.
*
* @see [Default export](https://storybook.js.org/docs/formats/component-story-format/#default-export)
*/
export type Meta<Args = DefaultArgs> = BaseMeta<PreactComponent> &
Annotations<Args, PreactReturnType>;
/**
* Story function that represents a component example.
*
* @see [Named Story exports](https://storybook.js.org/docs/formats/component-story-format/#named-story-exports)
*/
export type Story<Args = DefaultArgs> = BaseStory<Args, PreactReturnType> &
Annotations<Args, PreactReturnType>;

1
app/preact/types-6-0.d.ts vendored Normal file
View File

@ -0,0 +1 @@
export * from './dist/ts3.9/client/preview/types-6-0.d';