Implement session invites

This commit is contained in:
Pijus Kamandulis
2024-10-12 00:04:36 +03:00
parent 9b45d372fa
commit 1463c05731
16 changed files with 795 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
declare module 'bun' {
interface Env {
APPWRITE_FUNCTION_API_ENDPOINT: string;
APPWRITE_FUNCTION_PROJECT_ID: string;
APPWRITE_DATABASE_ID: string;
APPWRITE_ESTIMATION_SESSION_COLLECTION_ID: string;
}
}
export {};