env.d.ts (266B)
1 /// <reference types="vite/client" /> 2 3 interface ImportMetaEnv { 4 readonly VITE_MATRIX_SERVER_URL: string; 5 readonly VITE_MATRIX_ROOT_FOLDER: string; 6 readonly VITE_MATRIX_INSTANCE_ADMIN: string; 7 } 8 9 interface ImportMeta { 10 readonly env: ImportMetaEnv; 11 }