UNPKG

@redwoodjs/sdk

Version:

Build fast, server-driven webapps on Cloudflare with SSR, RSC, and realtime

12 lines (11 loc) 291 B
import { RwContext } from "../lib/router"; export interface DefaultAppContext { } export interface RequestInfo<Params = any, AppContext = DefaultAppContext> { request: Request; params: Params; ctx: AppContext; headers: Headers; rw: RwContext; cf: ExecutionContext; }