mirror of
https://github.com/djdevin/recflare.git
synced 2026-09-09 23:21:30 -07:00
more stubs
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user