Files
stackblitz--bolt.new/load-context.ts
T
2026-07-13 12:44:30 +08:00

10 lines
208 B
TypeScript

import { type PlatformProxy } from 'wrangler';
type Cloudflare = Omit<PlatformProxy<Env>, 'dispose'>;
declare module '@remix-run/cloudflare' {
interface AppLoadContext {
cloudflare: Cloudflare;
}
}