mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
8 lines
219 B
JavaScript
8 lines
219 B
JavaScript
/* eslint-disable no-underscore-dangle */
|
|
/* global window */
|
|
|
|
export const setCompodocJson = (compodocJson) => {
|
|
// @ts-expect-error (Converted from ts-ignore)
|
|
window.__STORYBOOK_COMPODOC_JSON__ = compodocJson;
|
|
};
|