11 lines
191 B
TypeScript
11 lines
191 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_FAMILY_ID?: string
|
|
readonly VITE_USER_ID?: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|