mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-06-26 18:26:38 +00:00
19 lines
279 B
TypeScript
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 {};
|