mirror of
https://github.com/coleam00/bolt.new-any-llm
synced 2024-12-26 22:02:09 +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;
|
|
}
|
|
}
|