First Upload

This commit is contained in:
2025-01-24 16:58:57 +00:00
commit 57a85465db
433 changed files with 41809 additions and 0 deletions

8
docs/global.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
declare global {
namespace NodeJS {
interface ProcessEnv {
NODE_ENV: 'development' | 'production';
CF_PAGES_BRANCH: string;
}
}
}