bolt.diy/app/env.d.ts
2025-03-14 07:27:30 -07:00

20 lines
304 B
TypeScript

/**
* <reference types="@remix-run/node" />
* <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 {};