12 lines
276 B
TypeScript
12 lines
276 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_SYNCDB_ENDPOINT: string,
|
|
readonly VITE_SYNCDB_USER: string
|
|
readonly VITE_CREATE_ENDPOINT: string
|
|
// more env variables...
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
} |