12 lines
223 B
TypeScript
12 lines
223 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_WS_HOST: string;
|
|
readonly VITE_WS_PORT: string;
|
|
readonly VITE_WS_SKEY: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|