mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:31:06 +08:00
Small type fix
This commit is contained in:
parent
54d3cd06fc
commit
0df595a0e5
@ -5,6 +5,7 @@ import {
|
|||||||
StoryContextForLoaders,
|
StoryContextForLoaders,
|
||||||
Framework,
|
Framework,
|
||||||
GlobalAnnotations,
|
GlobalAnnotations,
|
||||||
|
ComponentTitle,
|
||||||
} from '@storybook/csf';
|
} from '@storybook/csf';
|
||||||
|
|
||||||
import { StoriesListStore } from './StoriesListStore';
|
import { StoriesListStore } from './StoriesListStore';
|
||||||
@ -208,10 +209,13 @@ export class StoryStore<TFramework extends Framework> {
|
|||||||
getSetStoriesPayload() {
|
getSetStoriesPayload() {
|
||||||
const stories = this.extract();
|
const stories = this.extract();
|
||||||
|
|
||||||
const kindParameters: Parameters = stories.reduce((acc: Parameters, { title }) => {
|
const kindParameters: Parameters = stories.reduce(
|
||||||
acc[title] = {};
|
(acc: Parameters, { title }: { title: ComponentTitle }) => {
|
||||||
return acc;
|
acc[title] = {};
|
||||||
}, {} as Parameters);
|
return acc;
|
||||||
|
},
|
||||||
|
{} as Parameters
|
||||||
|
);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
v: 2,
|
v: 2,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user