/// interface ImportMetaEnv { /** Local-dev convenience: prefill the login form's email field. Only consumed when import.meta.env.DEV. */ readonly VITE_ADMIN_EMAIL?: string; /** Local-dev convenience: prefill the login form's password field. Only consumed when import.meta.env.DEV. */ readonly VITE_ADMIN_PASSWORD?: string; /** Override the dev proxy's Directus target. See vite.config.ts. */ readonly VITE_DEV_DIRECTUS_URL?: string; /** Override the dev proxy's Processor WS target. See vite.config.ts. */ readonly VITE_DEV_PROCESSOR_WS_URL?: string; } interface ImportMeta { readonly env: ImportMetaEnv; } /** * `maplibre-google-maps` ships an `index.js` without type declarations. * The protocol handler we consume has a stable signature documented in * the package's README; declare the surface we use. */ declare module 'maplibre-google-maps' { import type { AddProtocolAction } from 'maplibre-gl'; export const googleProtocol: AddProtocolAction; }