9 lines
218 B
TypeScript
9 lines
218 B
TypeScript
/// <reference types="vite/client" />
|
|
interface ImportMetaEnv {
|
|
readonly VITE_CURRENT_THEME: string;
|
|
// 可以添加其他环境变量的类型定义
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
} |