aboutsummaryrefslogtreecommitdiff
path: root/apps/web/load-context.ts
blob: 319b0bfa36b12d61c203cb03b1b57a26846460cf (plain) (blame)
1
2
3
4
5
6
7
8
9
import { type PlatformProxy } from "wrangler";

type Cloudflare = Omit<PlatformProxy<Env>, "dispose">;

declare module "@remix-run/cloudflare" {
	interface AppLoadContext {
		cloudflare: Cloudflare;
	}
}