| 1 | /// <reference types="vite/client" /> |
| 2 | |
| 3 | interface ImportMetaEnv |
| 4 | extends Readonly<Record<string, string>> { |
| 5 | readonly VITE_APP_TITLE: string |
| 6 | // more env variables... |
| 7 | } |
| 8 | |
| 9 | interface ImportMeta { |
| 10 | readonly env: ImportMetaEnv |
nothing calls this directly
no outgoing calls
no test coverage detected