15 lines
340 B
TypeScript
15 lines
340 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly MERMAID_RENDERER_URL: string;
|
|
readonly MERMAID_KROKI_RENDERER_URL: string;
|
|
readonly MERMAID_CDN_URL: string;
|
|
readonly MERMAID_BASE_URL: string;
|
|
readonly MERMAID_LOCAL: boolean;
|
|
// more env variables...
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|