No changes made

This commit is contained in:
2025-04-16 12:47:04 -04:00
commit 1ed3b0c2d4
98 changed files with 8857 additions and 0 deletions

10
frontend/src/vite-env.d.ts vendored Normal file
View File

@@ -0,0 +1,10 @@
/// <reference types="vite/client" />
import {ComponentCustomProperties as GCS} from "@vue/runtime-core";
import {Account} from "appwrite";
declare module "@vue/runtime-core" {
interface ComponentCustomProperties extends GCS {
$account: Account
}
}