13 lines
270 B
TypeScript
13 lines
270 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_URL: string
|
|
readonly VITE_APP_PASSWORD: string
|
|
readonly VITE_UPLOAD_ENABLED: string
|
|
readonly VITE_DELETE_ENABLED: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|