mirror of
https://github.com/coleam00/bolt.new-any-llm
synced 2024-12-27 06:12:07 +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;
|
||
|
}
|
||
|
}
|