Files
recflare/apps/discovery/src/context.ts
T
Devin Zuczek 11b037a2f1 more stubs
2026-08-15 13:54:34 -04:00

20 lines
613 B
TypeScript

import type { HonoApp } from '@repo/hono-helpers'
import type { SharedHonoEnv, SharedHonoVariables } from '@repo/hono-helpers/src/types'
export type Env = SharedHonoEnv & {
/**
* Static-asset fetcher for the page layouts in `static/` (see wrangler.jsonc
* `assets`). Fetched by filename so `{type}` is a wildcard; the binding is the only
* way in, since `run_worker_first` keeps the runtime from serving the files directly.
*/
ASSETS: Fetcher
}
/** Variables can be extended */
export type Variables = SharedHonoVariables
export interface App extends HonoApp {
Bindings: Env
Variables: Variables
}