devss / load-context.ts
ZeroTraceX
Add application file
19706d8
raw
history blame contribute delete
208 Bytes
import { type PlatformProxy } from 'wrangler';
type Cloudflare = Omit<PlatformProxy<Env>, 'dispose'>;
declare module '@remix-run/cloudflare' {
interface AppLoadContext {
cloudflare: Cloudflare;
}
}