bolt.diy / packages /bolt /load-context.ts
Dominic Elm
feat: initial commit
6927c07
raw
history blame
208 Bytes
import { type PlatformProxy } from 'wrangler';
type Cloudflare = Omit<PlatformProxy<Env>, 'dispose'>;
declare module '@remix-run/cloudflare' {
interface AppLoadContext {
cloudflare: Cloudflare;
}
}