11 lines
225 B
TypeScript
Executable File
11 lines
225 B
TypeScript
Executable File
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_SUPABASE_URL: string
|
|
readonly VITE_SUPABASE_ANON_PUBLIC_KEY: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|