mirror of
https://github.com/stackblitz/bolt.new
synced 2024-11-27 14:32:46 +00: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;
|
||
|
}
|
||
|
}
|