mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
Merge pull request #13963 from geisterfurz007/feat/csf-types-preact
Preact: Add CSF types
This commit is contained in:
commit
3a75c6565d
@ -8,3 +8,5 @@ export {
|
||||
forceReRender,
|
||||
raw,
|
||||
} from './preview';
|
||||
|
||||
export * from './preview/types-6-0';
|
||||
|
24
app/preact/src/client/preview/types-6-0.ts
Normal file
24
app/preact/src/client/preview/types-6-0.ts
Normal 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
1
app/preact/types-6-0.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
||||
export * from './dist/ts3.9/client/preview/types-6-0.d';
|
Loading…
x
Reference in New Issue
Block a user