Files
calories-tracker/vite-env.d.ts
T

15 lines
397 B
TypeScript
Raw Normal View History

2025-12-10 12:56:58 -03:00
/// <reference types="vite/client" />
/// <reference types="vite-plugin-pwa/client" />
2025-06-13 21:03:36 -03:00
interface ImportMetaEnv {
readonly VITE_APPWRITE_PROJECT_ID: string;
readonly VITE_APPWRITE_ENDPOINT: string;
readonly VITE_APPWRITE_DBID: string;
readonly VITE_APPWRITE_FOODENTRIESID: string;
readonly VITE_APPWRITE_USERSETTINGSID: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}