mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 02:31:13 +08:00
Fix type signature for .add()
This commit is contained in:
parent
060f0d6263
commit
be5ef39135
@ -129,7 +129,11 @@ export default class ClientApi {
|
||||
};
|
||||
});
|
||||
|
||||
api.add = (storyName: string, storyFn: string, parameters: Parameters = {}) => {
|
||||
api.add = (
|
||||
storyName: string,
|
||||
storyFn: StoryFn<StoryFnReturnType>,
|
||||
parameters: Parameters = {}
|
||||
) => {
|
||||
hasAdded = true;
|
||||
|
||||
const id = parameters.__id || toId(kind, storyName);
|
||||
|
Loading…
x
Reference in New Issue
Block a user