mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-23 11:35:14 +00:00
14 lines
327 B
TypeScript
14 lines
327 B
TypeScript
/* Provide Type for Vite's import.meta.env structure */
|
|
interface ImportMetaEnv extends Readonly<Record<string, string>> {
|
|
readonly BASE_URL: string;
|
|
readonly MODE: string;
|
|
readonly PROD: boolean;
|
|
readonly DEV: boolean;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|
|
|
|
declare const __COMMIT_HASH__: string;
|