mirror of
https://github.com/stackblitz-labs/bolt.diy.git
synced 2025-06-18 01:49:07 +01:00
10 lines
208 B
TypeScript
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;
|
|
}
|
|
}
|