14 lines
275 B
TypeScript
14 lines
275 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_APP_API_BASE_URL?: string
|
|
readonly VITE_APP_TITLE?: string
|
|
readonly VITE_APP_SHOP_ID?: string
|
|
readonly VITE_APP_USER_ID?: string
|
|
}
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|
|
|
|
|