mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-29 18:13:47 +00:00
Shows cabinet version, bot version, Python version, uptime, users and active subscriptions at the bottom of the dashboard page.
15 lines
315 B
TypeScript
15 lines
315 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
declare const __APP_VERSION__: string;
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_URL: string;
|
|
readonly VITE_TELEGRAM_BOT_USERNAME?: string;
|
|
readonly VITE_APP_NAME?: string;
|
|
readonly VITE_APP_LOGO?: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|