mirror of
https://github.com/pezkuwichain/pezkuwi-telegram-miniapp.git
synced 2026-04-22 00:47:55 +00:00
15 lines
337 B
TypeScript
15 lines
337 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_SUPABASE_URL: string;
|
|
readonly VITE_SUPABASE_ANON_KEY: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|
|
|
|
// Global version constants defined in vite.config.ts
|
|
declare const __APP_VERSION__: string;
|
|
declare const __BUILD_TIME__: string;
|