mirror of
https://github.com/Vikeo/LifeTrinket.git
synced 2025-11-17 00:08:01 +00:00
12 lines
261 B
TypeScript
12 lines
261 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_APP_VERSION: string;
|
|
readonly VITE_REPO_READ_ACCESS_TOKEN: string;
|
|
readonly VITE_FIREBASE_ANALYTICS_API_KEY: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|