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,
|
||||
Framework,
|
||||
GlobalAnnotations,
|
||||
ComponentTitle,
|
||||
} from '@storybook/csf';
|
||||
|
||||
import { StoriesListStore } from './StoriesListStore';
|
||||
@ -208,10 +209,13 @@ export class StoryStore<TFramework extends Framework> {
|
||||
getSetStoriesPayload() {
|
||||
const stories = this.extract();
|
||||
|
||||
const kindParameters: Parameters = stories.reduce((acc: Parameters, { title }) => {
|
||||
acc[title] = {};
|
||||
return acc;
|
||||
}, {} as Parameters);
|
||||
const kindParameters: Parameters = stories.reduce(
|
||||
(acc: Parameters, { title }: { title: ComponentTitle }) => {
|
||||
acc[title] = {};
|
||||
return acc;
|
||||
},
|
||||
{} as Parameters
|
||||
);
|
||||
|
||||
return {
|
||||
v: 2,
|
||||
|
Loading…
x
Reference in New Issue
Block a user