/// // @nychthemeron/library ships this as a CSS-only export subpath, so it has // no matching *.css wildcard declaration (the specifier doesn't end in .css). declare module '@nychthemeron/library/style' interface ViteTypeOptions { strictImportMetaEnv: unknown; } interface ImportMetaEnv { readonly VITE_API_URL: string; readonly VITE_API_KEY: string; } interface ImportMeta { readonly env: ImportMetaEnv; }