Files
alhp-web/frontend/env.d.ts

14 lines
248 B
TypeScript
Raw Normal View History

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_BASE_URL: string
readonly VITE_UPDATE_INTERVAL: number
readonly VITE_LIMIT: number
}
interface ImportMeta {
readonly env: ImportMetaEnv
}
declare module '@/*'