1/// <reference types="vite/client" />
3interface ImportMetaEnv {
4 /** URL of the TURN credential Worker (see worker/). Optional: without it the
5 * relay-token field is hidden and calls use STUN plus the public fallback. */
6 readonly VITE_TURN_ENDPOINT?: string
7}
9interface ImportMeta {
10 readonly env: ImportMetaEnv
11}