mirror of
https://github.com/donpat1to/Schichtenplaner.git
synced 2025-11-30 22:45:46 +01:00
12 lines
255 B
TypeScript
12 lines
255 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
// Define types for environment variables
|
|
interface ImportMetaEnv {
|
|
readonly VITE_APP_TITLE: string
|
|
readonly ENABLE_PRO: string
|
|
// more env variables...
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
} |