storybook/code/lib/cli/src/window.d.ts
2022-11-02 12:48:26 +11:00

9 lines
207 B
TypeScript

import type { Framework } from '@storybook/types';
import type { StoryStore } from '@storybook/client-api';
declare global {
interface Window {
__STORYBOOK_STORY_STORE__: StoryStore<Framework>;
}
}