mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 10:11:05 +08:00
Typing fixes
This commit is contained in:
parent
df17130995
commit
fe95ffef3e
@ -69,6 +69,7 @@ const defaultContext: StoryContext = {
|
||||
kind: 'unspecified',
|
||||
parameters: {},
|
||||
args: {},
|
||||
globalArgs: {},
|
||||
};
|
||||
|
||||
function decorateStory(
|
||||
|
@ -11,6 +11,7 @@ const defaultContext: StoryContext = {
|
||||
kind: 'unspecified',
|
||||
parameters: {},
|
||||
args: {},
|
||||
globalArgs: {},
|
||||
};
|
||||
|
||||
export const defaultDecorateStory = (storyFn: StoryFn, decorators: DecoratorFunction[]) =>
|
||||
|
@ -230,7 +230,12 @@ export default class StoryStore {
|
||||
const parameters = this._parameterEnhancers.reduce(
|
||||
(accumlatedParameters, enhancer) => ({
|
||||
...accumlatedParameters,
|
||||
...enhancer({ ...identification, parameters: accumlatedParameters, args: {} }),
|
||||
...enhancer({
|
||||
...identification,
|
||||
parameters: accumlatedParameters,
|
||||
args: {},
|
||||
globalArgs: {},
|
||||
}),
|
||||
}),
|
||||
parametersBeforeEnhancement
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user