14 lines
248 B
TypeScript
14 lines
248 B
TypeScript
|
|
/// <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 '@/*'
|