Files
bolt.diy/app/env.d.ts
Jason Laster 58f2cb0f58 add supabase
2025-03-13 07:09:36 -07:00

20 lines
310 B
TypeScript

/**
* <reference types="@remix-run/cloudflare" />
* <reference types="vite/client" />
*/
interface WindowEnv {
SUPABASE_URL: string;
SUPABASE_ANON_KEY: string;
USE_SUPABASE?: string;
}
declare global {
interface Window {
ENV: WindowEnv;
}
}
// Ensure this is treated as a module
export {};