12 lines
231 B
TypeScript
12 lines
231 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_URL: string;
|
|
readonly AUTHENTIK_URL: string;
|
|
readonly AUTHENTIK_CLIENT_ID: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|