mirror of
https://github.com/harivansh-afk/asap.it.git
synced 2026-04-15 09:01:13 +00:00
9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
import { type PlatformProxy } from 'wrangler';
|
|
|
|
type Cloudflare = Omit<PlatformProxy<Env>, 'dispose'>;
|
|
|
|
declare module '@remix-run/cloudflare' {
|
|
interface AppLoadContext {
|
|
cloudflare: Cloudflare;
|
|
}
|
|
}
|