mirror of
https://github.com/stackblitz/bolt.new
synced 2024-11-27 22:42:21 +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;
|
|
}
|
|
}
|