mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
10 lines
167 B
TypeScript
10 lines
167 B
TypeScript
interface ImportMetaEnv {
|
|
__STORYBOOK_URL__?: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|
|
|
|
declare var STORYBOOK_BUILDER: string | undefined;
|