newbolt / load-context.ts
0Scottzilla0's picture
Upload folder using huggingface_hub
8481fea verified
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;
}
}