feat: add vite env and bulk delete

This commit is contained in:
2025-06-13 21:03:36 -03:00
parent a1cc868f33
commit ada0776d4e
4 changed files with 29 additions and 19 deletions
+11
View File
@@ -0,0 +1,11 @@
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;
}