13 lines
300 B
TypeScript
13 lines
300 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_SUPABASE_URL?: string;
|
|
readonly VITE_SUPABASE_PUBLISHABLE_KEY?: string;
|
|
readonly VITE_SUPABASE_ANON_KEY?: string;
|
|
readonly VITE_TAX_WEBHOOK_URL?: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|