Skip to content

Commit

Permalink
React: Add DecoratorFn type to exports (#8121)
Browse files Browse the repository at this point in the history
React: Add DecoratorFn type to exports
  • Loading branch information
ndelangen authored and shilman committed Oct 7, 2019
1 parent eeeab8d commit 88bfc82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/react/src/client/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export {
storiesOf,
setAddon,
addDecorator,
DecoratorFn,
addParameters,
configure,
getStorybook,
Expand Down
1 change: 1 addition & 0 deletions app/react/src/client/preview/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export const storiesOf: ClientApi['storiesOf'] = (kind, m) => {

export const configure: ClientApi['configure'] = (...args) => api.configure(...args, framework);
export const addDecorator: ClientApi['addDecorator'] = api.clientApi.addDecorator;
export type DecoratorFn = Parameters<typeof addDecorator>[0];
export const addParameters: ClientApi['addParameters'] = api.clientApi.addParameters;
export const clearDecorators: ClientApi['clearDecorators'] = api.clientApi.clearDecorators;
export const setAddon: ClientApi['setAddon'] = api.clientApi.setAddon;
Expand Down

0 comments on commit 88bfc82

Please sign in to comment.