mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
9 lines
207 B
TypeScript
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>;
|
|
}
|
|
}
|