8 lines
233 B
TypeScript
Raw Normal View History

2024-04-07 17:35:03 +08:00
/// <reference types="vite/client" />
/// <reference types="element-plus/global" />
/// <reference types="./components.d.ts" />
2024-12-21 22:17:07 +08:00
type BooleanString = 'true' | 'false';
interface ImportMetaEnv {
readonly VITE_DEBUG: BooleanString;
}