env.d.ts (263B)
1 /// <reference path="../.astro/types.d.ts" /> 2 /// <reference types="astro/client" /> 3 interface ImportMetaEnv { 4 readonly API_KEY: string; 5 readonly INDEX: string; 6 readonly MEILI_HOST: string; 7 } 8 9 interface ImportMeta { 10 readonly env: ImportMetaEnv; 11 }