mirror of
https://github.com/djdevin/recflare.git
synced 2026-09-08 22:51:30 -07:00
custom rooms
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import type { HonoApp } from '@repo/hono-helpers'
|
||||
import type { SharedHonoEnv, SharedHonoVariables } from '@repo/hono-helpers/src/types'
|
||||
|
||||
export type Env = SharedHonoEnv & {
|
||||
// Shared CDN R2 bucket (`recflare-cdn`, owned by the `cdn` worker). Client
|
||||
// uploads are written here under a per-FileType subfolder; the `cdn` worker
|
||||
// serves them back.
|
||||
CDN_ASSETS: R2Bucket
|
||||
}
|
||||
|
||||
/** Variables can be extended */
|
||||
export type Variables = SharedHonoVariables
|
||||
|
||||
export interface App extends HonoApp {
|
||||
Bindings: Env
|
||||
Variables: Variables
|
||||
}
|
||||
Reference in New Issue
Block a user