15 lines
No EOL
435 B
TypeScript
15 lines
No EOL
435 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_URL: string
|
|
readonly VITE_MICROSOFT_CLIENT_ID: string
|
|
readonly VITE_MICROSOFT_TENANT_ID: string
|
|
readonly VITE_ENTRA_CLIENT_SECRET: string
|
|
readonly VITE_ENTRA_AUTHORITY: string
|
|
readonly VITE_ENTRA_REDIRECT_PATH: string
|
|
readonly VITE_ENTRA_REDIRECT_URI: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
} |