mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-17 12:20:04 +00:00
9 lines
204 B
TypeScript
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;
|
|
}
|
|
}
|