bolt.diy/app/env.d.ts
2025-03-30 05:31:56 -07:00

19 lines
279 B
TypeScript

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