mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:21:23 +08:00
fix types
This commit is contained in:
parent
82906d156e
commit
0b99973bb0
@ -60,8 +60,7 @@ export class StoryStoreFacade<TRenderer extends Renderer> {
|
||||
|
||||
const storyEntries = Object.entries(this.entries);
|
||||
// Add the kind parameters and global parameters to each entry
|
||||
const sortableV6: [StoryId, PreparedStory<TRenderer>, Parameters, Parameters][] =
|
||||
storyEntries.map(([storyId, { type, importPath, ...entry }]) => {
|
||||
const sortableV6 = storyEntries.map(([storyId, { type, importPath, ...entry }]) => {
|
||||
const exports = this.csfExports[importPath];
|
||||
const csfFile = store.processCSFFileWithCache<TRenderer>(
|
||||
exports,
|
||||
@ -86,7 +85,7 @@ export class StoryStoreFacade<TRenderer extends Renderer> {
|
||||
storyLike,
|
||||
csfFile.meta.parameters,
|
||||
this.projectAnnotations.parameters || {},
|
||||
];
|
||||
] as [StoryId, PreparedStory<TRenderer>, Parameters, Parameters];
|
||||
});
|
||||
|
||||
// NOTE: the sortStoriesV6 version returns the v7 data format. confusing but more convenient!
|
||||
|
Loading…
x
Reference in New Issue
Block a user