[roomcomments] implement basic room comments

This commit is contained in:
Devin Zuczek
2026-08-20 19:00:22 -04:00
parent 062c07cc33
commit 655c7ee4d6
17 changed files with 15670 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
// oxlint-disable @typescript-eslint/consistent-type-imports
type LocalEnv = import('./src/context').Env
type MainModule = typeof import('./src/roomcomments.app')
// Add Env to Cloudflare namespace so that we can access it via
// import { env } from 'cloudflare:workers'
declare namespace Cloudflare {
interface Env extends LocalEnv {}
interface GlobalProps {
mainModule: MainModule
}
}