mirror of
https://github.com/hex248/sprint.git
synced 2026-02-08 02:33:01 +00:00
12 lines
198 B
TypeScript
12 lines
198 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
type ViteString = string | undefined;
|
|
|
|
interface ImportMetaEnv {
|
|
readonly SERVER_URL: ViteString;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|