supermemory/apps/web/load-context.ts
2025-01-20 17:50:45 -07:00

9 lines
204 B
TypeScript

import { type PlatformProxy } from "wrangler";
type Cloudflare = Omit<PlatformProxy<Env>, "dispose">;
declare module "@remix-run/cloudflare" {
interface AppLoadContext {
cloudflare: Cloudflare;
}
}