15 lines
310 B
TypeScript
15 lines
310 B
TypeScript
/// <reference types="vite/client" />
|
|
/// <reference types="vite-plugin-pwa/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly PROD: boolean
|
|
readonly DEV: boolean
|
|
readonly MODE: string
|
|
readonly VITE_API_URL?: string
|
|
readonly VITE_WS_URL?: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|